Skip to content

Commit

Permalink
Update path to scripts in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
chcheng3 committed Sep 21, 2024
1 parent 9e2abb2 commit c3590d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ jobs:
run: echo ${{github.event.client_payload.trigger}}

- name: Download Cactus
run: /bin/bash $GITHUB_WORKSPACE/scripts/bin/download.sh
run: /bin/bash $GITHUB_WORKSPACE/bin/download.sh

- name: Build Cactus
run: /bin/bash $GITHUB_WORKSPACE/scripts/bin/build.sh
run: /bin/bash $GITHUB_WORKSPACE/bin/build.sh
# The oneAPI setup does not build yet
continue-on-error: ${{matrix.accelerator == 'oneapi'}}

- name: Test Cactus
# We cannot run on accelerators. Debug builds run too slowly.
if: ${{matrix.accelerator == 'cpu' && matrix.mode == 'optimize'}}
run: /bin/bash $GITHUB_WORKSPACE/scripts/bin/test.sh
run: /bin/bash $GITHUB_WORKSPACE/bin/test.sh

# Set exit code based on test status
- name: Set exit code
Expand Down

0 comments on commit c3590d3

Please sign in to comment.