Skip to content

Commit 29104f4

Browse files
committed
Remove tests from Docker update
1 parent ff7fd17 commit 29104f4

File tree

1 file changed

+3
-44
lines changed

1 file changed

+3
-44
lines changed

.github/workflows/update-docker-images.yml

Lines changed: 3 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Update Docker Images
22

33
on:
44
schedule:
5-
- cron: '0 1 * * *'
5+
- cron: '0 1 * * *'
66
workflow_dispatch:
77

88
defaults:
@@ -75,6 +75,8 @@ jobs:
7575
with:
7676
base-image: ${{ matrix.base_image.version}}
7777
image: nginx/nginx-ingress:${{ steps.dist.outputs.tag }}
78+
env:
79+
DEBUG: ${{ secrets.ACTIONS_STEP_DEBUG }}
7880
- id: needs
7981
run: echo "${{ matrix.base_image.distro }}=${{ steps.update.outputs.needs-updating }}" >> $GITHUB_OUTPUT
8082

@@ -111,49 +113,6 @@ jobs:
111113
path: ${{ github.workspace }}/dist
112114
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}-multi
113115

114-
test:
115-
name: Run tests
116-
runs-on: ubuntu-22.04
117-
needs: [check, variables, binary]
118-
strategy:
119-
matrix:
120-
include:
121-
- image: debian
122-
marker: ingresses
123-
needs-updating: ${{ needs.check.outputs.needs-updating-debian }}
124-
- image: alpine
125-
marker: "vs vsr"
126-
needs-updating: ${{ needs.check.outputs.needs-updating-alpine }}
127-
- image: ubi
128-
marker: "policies ts"
129-
needs-updating: ${{ needs.check.outputs.needs-updating-ubi }}
130-
steps:
131-
- name: Checkout Repository
132-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
133-
with:
134-
ref: refs/tags/v${{ needs.variables.outputs.kic-tag }}
135-
if: ${{ matrix.needs-updating == 'true' }}
136-
- name: Fetch Cached Artifacts
137-
uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 # v3.2.3
138-
with:
139-
path: ${{ github.workspace }}/dist
140-
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}-multi
141-
if: ${{ matrix.needs-updating == 'true' }}
142-
- name: Run Smoke Tests
143-
id: smoke-tests
144-
uses: ./.github/actions/smoke-tests
145-
with:
146-
image: ${{ matrix.image }}
147-
marker: ${{ matrix.marker }}
148-
k8s-version: ${{ needs.variables.outputs.k8s_version }}
149-
if: ${{ matrix.needs-updating == 'true' }}
150-
- name: Upload Test Results
151-
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
152-
with:
153-
name: ${{ steps.smoke-tests.outputs.test-results-name }}
154-
path: ${{ github.workspace }}/tests/${{ steps.smoke-tests.outputs.test-results-name }}.html
155-
if: always()
156-
157116
release-docker-debian:
158117
name: Release Debian Image
159118
needs: [binary, check, variables]

0 commit comments

Comments
 (0)