Skip to content

Commit

Permalink
macos
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Jan 12, 2022
1 parent bdcc737 commit 9642492
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/test_python_cplusplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ jobs:
run: |
scripts/run-cppcheck.sh
- name: dbg
run: |
which python && python --version && command -v python3 && echo $(dirname $(dirname $(which python)))
- name: Python tests
run: |
scripts/run-python-tests.sh
Expand Down
4 changes: 3 additions & 1 deletion scripts/buildAmici.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ fi
${cmake} \
-DCMAKE_CXX_FLAGS="-Wall -Wextra -Werror" \
-DCMAKE_BUILD_TYPE=$build_type \
-DPython3_EXECUTABLE="$(command -v python3)" ..
-DPython3_EXECUTABLE="$(command -v python3)" \
-DPython3_ROOT_DIR=$(dirname $(dirname $(command -v python3))) \
..

# build, with or without sonarcloud wrapper
if [ "${CI_SONARCLOUD:-}" = "TRUE" ]; then
Expand Down

0 comments on commit 9642492

Please sign in to comment.