Skip to content

Commit

Permalink
github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcToussaint committed Jun 30, 2024
1 parent a117929 commit 6e38600
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ jobs:
python-version: '3.10'
- name: install ubuntu dependencies
run: |
sudo apt-get install libboost-system-dev libccd-dev
sudo apt-get install libboost-system-dev
APTGETYES=1 make -C rai -j1 installUbuntuAll
- name: install source dependencies
run: |
wget https://github.com/MarcToussaint/rai-extern/raw/main/install.sh; chmod a+x install.sh
./install.sh libccd
./install.sh fcl
- name: install python dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ wheels:
# _build_utils/run-docker.sh local/_build_utils/build-wheels.sh

wheels-upload:
twine upload dist/*.whl --repository robotic
twine upload dist/*.whl

wheels-install:
python$(PY_VER) -m pip install --user dist/robotic-*cp38*.whl --force-reinstall
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pip install jupyter nbconvert matplotlib ipympl
git clone https://github.com/MarcToussaint/rai-tutorials.git
cd rai-tutorials
make run -j1
``
```


## Installation from source with real Franka & realsense support
Expand Down
2 changes: 1 addition & 1 deletion _build_utils/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export PYTHONPATH=.
for ver in 10 11 7 8 9; do
echo -e "\n\n======== compiling (python version " $ver ") ========"
cmake -B build_wheel -DPY_VERSION=3.$ver .
make -C build_wheel rai _robotic meshTool --quiet
make -j8 -C build_wheel rai _robotic meshTool --quiet
if [ "$?" != 0 ]; then
echo "--- compile failed ---"
exit
Expand Down

0 comments on commit 6e38600

Please sign in to comment.