File tree Expand file tree Collapse file tree 4 files changed +5
-189
lines changed
actions/docker-build-push Expand file tree Collapse file tree 4 files changed +5
-189
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 6262 targets :
6363 runs-on : ubuntu-latest
6464 outputs :
65- matrix : ${{ steps.matrix.outputs.stages }}
6665 amd64 : ${{ steps.amd64.outputs.distros }}
6766 arm64 : ${{ steps.arm64.outputs.distros }}
6867 has_changes : ${{ steps.filter.outputs.affected == 'true' }}
8584 - '*.Dockerfile'
8685 - '.github/actions/docker-*/*'
8786
88- - name : Generate list of targets (filtered)
89- id : matrix
90- uses : ./.github/actions/docker-targets
91- with :
92- changed : ${{ steps.filter.outputs.docker_files }}
93- all : ${{ steps.filter.outputs.action }}
94-
9587 - name : amd64 targets
9688 run : |
9789 {
@@ -202,6 +194,7 @@ jobs:
202194 needs :
203195 - lint
204196 - generate
197+ - action-tests
205198 - merge-manifests
206199 if : ${{ always() && !cancelled() && needs.merge-manifests.result != 'cancelled' }}
207200 runs-on : ubuntu-latest
@@ -216,6 +209,10 @@ jobs:
216209 echo "Generate failed"
217210 exit 1
218211 fi
212+ if [ "${{ needs.action-tests.result }}" != 'success' ]; then
213+ echo "Action tests failed"
214+ exit 1
215+ fi
219216 if [ "${{ needs.merge-manifests.result }}" != 'skipped' ] && \
220217 [ "${{ needs.merge-manifests.result }}" != 'success' ]; then
221218 echo "Docker failed"
You can’t perform that action at this time.
0 commit comments