Skip to content

Commit

Permalink
Fix CI bash not finding python
Browse files Browse the repository at this point in the history
  • Loading branch information
lczech committed Jun 5, 2024
1 parent 8c7e94a commit 77c4572
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,11 @@ jobs:
- name: Run Test
if: ( matrix.os == 'ubuntu-22.04' && matrix.compiler == 'gcc-13' ) || matrix.compiler == 'apple'
run: |
./test/run.sh
# We run the test scripts directly here, instead of via the bash script,
# as this one fails to locate the above installation... Ah fun.
./test/execute_tests.py
./test/evaluate.py
# ./test/run.sh
- name: Upload Tests
if: ( matrix.os == 'ubuntu-22.04' && matrix.compiler == 'gcc-13' ) || matrix.compiler == 'apple'
Expand Down

0 comments on commit 77c4572

Please sign in to comment.