Skip to content

Commit 35024c4

Browse files
committed
Make checkout first
Otherwise it deletes the downloaded artifacts
1 parent 52bd24e commit 35024c4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci_linux.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,13 @@ jobs:
138138
- name: RockyLinux-9 / CUDA-12.8.1
139139
image: "ghcr.io/rust-gpu/rust-cuda-rockylinux9-cuda12:latest"
140140
steps:
141+
- name: Checkout repository
142+
uses: actions/checkout@v4
143+
144+
# random command that forces rustup to install stuff in rust-toolchain
145+
- name: Install rust-toolchain
146+
run: cargo version
147+
141148
- name: Download build artifacts
142149
uses: actions/download-artifact@v4
143150
with:
@@ -147,13 +154,6 @@ jobs:
147154
- name: List downloaded files
148155
run: ls -lR ${{ needs.build.outputs.artifact_path }}
149156

150-
- name: Checkout repository
151-
uses: actions/checkout@v4
152-
153-
# random command that forces rustup to install stuff in rust-toolchain
154-
- name: Install rust-toolchain
155-
run: cargo version
156-
157157
- name: Run remote tests
158158
env:
159159
MODAL_TOKEN_ID: ${{ secrets.MODAL_TOKEN_ID }}

0 commit comments

Comments
 (0)