Browse Source

Add sudo to install dependencies

master
Krisjanis Rijnieks 5 years ago
parent
commit
fda256d6a7
  1. 10
      .github/workflows/ubuntu.yml

10
.github/workflows/ubuntu.yml

@ -7,9 +7,13 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- run: mkdir .ofxPiMapper && mv ./* .ofxPiMapper/
- run: mkdir .ofxPiMapper
- run: mv ./* .ofxPiMapper/
- run: wget https://openframeworks.cc/versions/v0.11.0/of_v0.11.0_linux64gcc6_release.tar.gz --tries=10
- run: tar -xvf of_v0.11.0_linux64gcc6_release.tar.gz && rm of_v0.11.0_linux64gcc6_release.tar.gz
- run: tar -xvf of_v0.11.0_linux64gcc6_release.tar.gz
- run: rm of_v0.11.0_linux64gcc6_release.tar.gz
- run: mv of_v0.11.0_linux64gcc6_release openFrameworks
- run: mv .ofxPiMapper openFrameworks/addons/ofxPiMapper
- run: cd openFrameworks/scripts/linux/ubuntu && ./install_dependencies.sh
- run: |
cd openFrameworks/scripts/linux/ubuntu
sudo ./install_dependencies.sh

Loading…
Cancel
Save