Skip to content

Commit 3817d82

Browse files
authored
Make aarch64 come always right before x86_64 configurations in docker.yml
1 parent 7bb1792 commit 3817d82

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/docker.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -260,28 +260,28 @@ jobs:
260260
needs: x86_64-scipy
261261
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
262262

263-
aarch64-pytorch-cuda12:
263+
x86_64-pytorch-cuda11:
264264
uses: ./.github/workflows/docker-build-test-upload.yml
265265
with:
266266
parent-image: scipy-notebook
267267
image: pytorch-notebook
268-
variant: cuda12
269-
platform: aarch64
270-
runs-on: ubuntu-24.04-arm
268+
variant: cuda11
269+
platform: x86_64
270+
runs-on: ubuntu-24.04
271271
timeout-minutes: 25
272-
needs: aarch64-scipy
272+
needs: x86_64-scipy
273273
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
274274

275-
x86_64-pytorch-cuda11:
275+
aarch64-pytorch-cuda12:
276276
uses: ./.github/workflows/docker-build-test-upload.yml
277277
with:
278278
parent-image: scipy-notebook
279279
image: pytorch-notebook
280-
variant: cuda11
281-
platform: x86_64
282-
runs-on: ubuntu-24.04
280+
variant: cuda12
281+
platform: aarch64
282+
runs-on: ubuntu-24.04-arm
283283
timeout-minutes: 25
284-
needs: x86_64-scipy
284+
needs: aarch64-scipy
285285
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
286286

287287
x86_64-pytorch-cuda12:

0 commit comments

Comments
 (0)