Skip to content

Commit

Permalink
Merge pull request #634 from stephenswat/ci/download_after_build
Browse files Browse the repository at this point in the history
Download data files after build in CI
  • Loading branch information
stephenswat authored Jun 26, 2024
2 parents 0ef502d + 6b887ef commit b3f0d86
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ jobs:
shell: bash
steps:
- uses: actions/checkout@v3
- name: Download data files
run: data/traccc_data_get_files.sh
- name: Configure
run: |
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.platform.name }}
Expand All @@ -101,6 +99,9 @@ jobs:
run: |
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.platform.name }}
cmake --build build
- name: Download data files
if: "matrix.platform.name == 'CPU'"
run: data/traccc_data_get_files.sh
- name: Test
if: "matrix.platform.name == 'CPU'"
run: |
Expand Down

0 comments on commit b3f0d86

Please sign in to comment.