Skip to content

Commit b581c17

Browse files
committed
Remove unneeded files
1 parent a8ef3bc commit b581c17

File tree

4 files changed

+5
-189
lines changed

4 files changed

+5
-189
lines changed

.github/actions/docker-build-push/README.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/actions/docker-build-push/action.yml

Lines changed: 0 additions & 92 deletions
This file was deleted.

.github/scripts/check_target.py

Lines changed: 0 additions & 61 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ jobs:
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' }}
@@ -85,13 +84,6 @@ jobs:
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"

0 commit comments

Comments
 (0)