@@ -336,6 +336,16 @@ jobs:
336
336
needs : x86_64-pyspark
337
337
if : ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
338
338
339
+ contributed-recipes :
340
+ uses : ./.github/workflows/contributed-recipes.yml
341
+ with :
342
+ called-using-workflow-call : true
343
+ # Contributed recipes only use these images
344
+ # If recipes using other images will be added, they should be added here as well
345
+ #
346
+ # contributed-recipes will give an error if the image is not yet built and uploaded
347
+ needs : [aarch64-base, x86_64-base, aarch64-minimal, x86_64-minimal]
348
+
339
349
tag-push :
340
350
uses : ./.github/workflows/docker-tag-push.yml
341
351
with :
@@ -370,6 +380,8 @@ jobs:
370
380
variant : cuda12
371
381
needs :
372
382
[
383
+ contributed-recipes,
384
+
373
385
aarch64-foundation,
374
386
aarch64-base,
375
387
aarch64-minimal,
@@ -425,13 +437,3 @@ jobs:
425
437
uses : ./.github/workflows/docker-wiki-update.yml
426
438
needs : tag-push-fast
427
439
if : contains(github.event.pull_request.title, '[FAST_BUILD]')
428
-
429
- contributed-recipes :
430
- uses : ./.github/workflows/contributed-recipes.yml
431
- with :
432
- called-using-workflow-call : true
433
- # Contributed recipes only use these images
434
- # If recipes using other images will be added, they should be added here as well
435
- #
436
- # contributed-recipes will give an error if the image is not yet built and uploaded
437
- needs : [aarch64-base, x86_64-base, aarch64-minimal, x86_64-minimal]
0 commit comments