1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-05 15:37:19 +00:00

chore: fix conformance tests (#9187)

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
Charles-Edouard Brétéché 2023-12-18 14:12:57 +01:00 committed by GitHub
parent 68a1258899
commit e68bca6563
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -617,8 +617,8 @@ jobs:
version: v1.27.x version: v1.27.x
- name: v1.28 - name: v1.28
version: v1.28.x version: v1.28.x
- name: v1.29 # - name: v1.29
version: v1.29.x # version: v1.29.x
tests: tests:
- custom-sigstore - custom-sigstore
needs: prepare-images needs: prepare-images
@ -965,7 +965,8 @@ jobs:
KYVERNO_EXPERIMENTAL=true kyverno fix test ./test/cli --save --compress KYVERNO_EXPERIMENTAL=true kyverno fix test ./test/cli --save --compress
make verify-cli-tests make verify-cli-tests
conformance-required: conformance-required-success:
name: conformance-required
needs: needs:
- standard - standard
- ttl - ttl
@ -979,5 +980,25 @@ jobs:
- monitor-helm-secret-size - monitor-helm-secret-size
- check-tests - check-tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ success() }}
steps: steps:
- run: echo "Required jobs success!" - run: ${{ true }}
conformance-required-failure:
name: conformance-required
needs:
- standard
- ttl
- force-failure-policy-ignore
- validatingadmissionpolicies-v1alpha1
- validatingadmissionpolicies-v1beta1
- validatingadmissionpolicies-reports-v1alpha1
- validatingadmissionpolicies-reports-v1beta1
- custom-sigstore
- default
- monitor-helm-secret-size
- check-tests
runs-on: ubuntu-latest
if: ${{ failure() || cancelled() }}
steps:
- run: ${{ false }}