Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn authored Apr 4, 2022
1 parent 898a281 commit 99ba372
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,14 @@ jobs:
- name: Install libraries
if: ${{ matrix.runs_on == 'macos-latest' }}
run: |
python -c "from pysme.smelib.libtools import download_libsme; download_libsme()"
cd src/pysme/lib
echo $PWD
ls
cd SME/src/pysme/smelib
python -c "from libtools import download_libsme; download_libsme()"
cd ../lib
install_name_tool -id $PWD/libsme.5.dylib libsme.5.dylib
cd ../../..
python -c "from pysme.smelib.libtools import compile_interface; compile_interface()"
cd ../smelib
python -c "from libtools import compile_interface; compile_interface()"
echo $PWD
- name: Test with pytest
Expand Down

0 comments on commit 99ba372

Please sign in to comment.