File tree Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 78
78
BUILDKIT_PROGRESS : plain
79
79
shell : bash
80
80
81
- - name : Run tests ✅
82
- run : python3 -m tests.run_tests --short-image-name ${{ inputs.image }} --registry ${{ env.REGISTRY }} --owner ${{ env.OWNER }}
83
- shell : bash
84
-
85
81
- name : Write tags file 🏷
86
82
run : |
87
83
python3 -m tagging.write_tags_file --short-image-name ${{ inputs.image }} --tags-dir /tmp/jupyter/tags/ --registry ${{ env.REGISTRY }} --owner ${{ env.OWNER }} --variant ${{ inputs.variant }}
@@ -120,3 +116,7 @@ jobs:
120
116
name : ${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}
121
117
path : /tmp/jupyter/images/${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}.tar.zst
122
118
retention-days : 3
119
+
120
+ - name : Run tests ✅
121
+ run : python3 -m tests.run_tests --short-image-name ${{ inputs.image }} --registry ${{ env.REGISTRY }} --owner ${{ env.OWNER }}
122
+ shell : bash
Original file line number Diff line number Diff line change @@ -458,11 +458,7 @@ jobs:
458
458
{ image: all-spark-notebook, variant: default },
459
459
]
460
460
needs : [aarch64-images-tag-push, x86_64-images-tag-push]
461
- if : |
462
- always() &&
463
- needs.x86_64-images-tag-push.result == 'success' &&
464
- (needs.aarch64-images-tag-push.result == 'success' || needs.aarch64-images-tag-push.result == 'skipped') &&
465
- !contains(github.event.pull_request.title, '[FAST_BUILD]')
461
+ if : (github.repository_owner == 'jupyter' || github.repository_owner == 'mathbunnyru') && !contains(github.event.pull_request.title, '[FAST_BUILD]')
466
462
467
463
merge-tags-fast :
468
464
uses : ./.github/workflows/docker-merge-tags.yml
@@ -480,11 +476,7 @@ jobs:
480
476
{ image: base-notebook, variant: default },
481
477
]
482
478
needs : [aarch64-images-tag-push-fast, x86_64-images-tag-push-fast]
483
- if : |
484
- always() &&
485
- needs.x86_64-images-tag-push-fast.result == 'success' &&
486
- (needs.aarch64-images-tag-push-fast.result == 'success' || needs.aarch64-images-tag-push-fast.result == 'skipped') &&
487
- contains(github.event.pull_request.title, '[FAST_BUILD]')
479
+ if : (github.repository_owner == 'jupyter' || github.repository_owner == 'mathbunnyru') && contains(github.event.pull_request.title, '[FAST_BUILD]')
488
480
489
481
wiki-update :
490
482
uses : ./.github/workflows/docker-wiki-update.yml
You can’t perform that action at this time.
0 commit comments