Skip to content

Commit b3f0d86

Browse files
authored
Merge pull request #634 from stephenswat/ci/download_after_build
Download data files after build in CI
2 parents 0ef502d + 6b887ef commit b3f0d86

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/builds.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ jobs:
8282
shell: bash
8383
steps:
8484
- uses: actions/checkout@v3
85-
- name: Download data files
86-
run: data/traccc_data_get_files.sh
8785
- name: Configure
8886
run: |
8987
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.platform.name }}
@@ -101,6 +99,9 @@ jobs:
10199
run: |
102100
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.platform.name }}
103101
cmake --build build
102+
- name: Download data files
103+
if: "matrix.platform.name == 'CPU'"
104+
run: data/traccc_data_get_files.sh
104105
- name: Test
105106
if: "matrix.platform.name == 'CPU'"
106107
run: |

0 commit comments

Comments
 (0)