Skip to content

Commit

Permalink
dev3
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcToussaint committed Sep 22, 2024
1 parent 3823659 commit 79d80ab
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: '3.10'
- name: install ubuntu dependencies
run: |
sudo apt-get install libboost-system-dev
sudo apt-get install libboost-system-dev libjsoncpp-dev
APTGETYES=1 make -C rai -j1 installUbuntuAll
- name: install source dependencies
run: |
Expand Down
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
PY_VER = $(shell python3 -c "import sys; print(str(sys.version_info[0])+'.'+str(sys.version_info[1]))")
PY_SITE = $(shell python3 -m site --user-site)

default: docs
default: compile

compile:
make -C build

docs:
cd rai-docs && sphinx-build doc ../html
Expand All @@ -18,6 +21,7 @@ local-install:

local-clean:
-rm -Rf $(PY_SITE)/robotic
-rm -Rf $(PY_SITE)/robotic-*
-rm -f ${HOME}/.local/lib/*rai*
-rm -f ${HOME}/.local/bin/*ry*

Expand All @@ -38,6 +42,9 @@ test:
cd ${HOME} && python3 -c 'import robotic as ry; print("ry version:", ry.__version__, ry.compiled());'

test2:
cd ${HOME} && python3 -c 'import robotic as ry; ry.test.RndScene()'

test3:
ry-view $(PY_SITE)/robotic/rai-robotModels/scenarios/pandasTable.g

test-tutorials:
Expand Down
2 changes: 1 addition & 1 deletion botop
2 changes: 1 addition & 1 deletion rai-robotModels
2 changes: 1 addition & 1 deletion rai-tutorials
2 changes: 1 addition & 1 deletion robotic/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.0.dev2'
__version__ = '0.2.0.dev3'

0 comments on commit 79d80ab

Please sign in to comment.