File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -690,6 +690,9 @@ jobs:
690
690
smokeOSSResult="${{ needs.smoke-tests-oss.result }}"
691
691
smokePlusResult="${{ needs.smoke-tests-plus.result }}"
692
692
smokeNAPResult="${{ needs.smoke-tests-nap.result }}"
693
+ buildOSSResult="${{ needs.build-docker.result }}"
694
+ buildPlusResult="${{ needs.build-docker-plus.result }}"
695
+ buildNAPResult="${{ needs.build-docker-nap.result }}"
693
696
if [[ $tagResult != "success" && $tagResult != "skipped" ]]; then
694
697
exit 1
695
698
fi
@@ -702,6 +705,15 @@ jobs:
702
705
if [[ $smokeNAPResult != "success" && $smokeNAPResult != "skipped" ]]; then
703
706
exit 1
704
707
fi
708
+ if [[ $buildOSSResult != "success" && $buildOSSResult != "skipped" ]]; then
709
+ exit 1
710
+ fi
711
+ if [[ $buildPlusResult != "success" && $buildPlusResult != "skipped" ]]; then
712
+ exit 1
713
+ fi
714
+ if [[ $buildNAPResult != "success" && $buildNAPResult != "skipped" ]]; then
715
+ exit 1
716
+ fi
705
717
706
718
trigger-image-promotion :
707
719
name : Promote images on Force Run
You can’t perform that action at this time.
0 commit comments