mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 07:26:55 +00:00
chore: fix conformance tests (#9187)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
68a1258899
commit
e68bca6563
1 changed files with 25 additions and 4 deletions
29
.github/workflows/conformance.yaml
vendored
29
.github/workflows/conformance.yaml
vendored
|
@ -617,8 +617,8 @@ jobs:
|
|||
version: v1.27.x
|
||||
- name: v1.28
|
||||
version: v1.28.x
|
||||
- name: v1.29
|
||||
version: v1.29.x
|
||||
# - name: v1.29
|
||||
# version: v1.29.x
|
||||
tests:
|
||||
- custom-sigstore
|
||||
needs: prepare-images
|
||||
|
@ -965,7 +965,8 @@ jobs:
|
|||
KYVERNO_EXPERIMENTAL=true kyverno fix test ./test/cli --save --compress
|
||||
make verify-cli-tests
|
||||
|
||||
conformance-required:
|
||||
conformance-required-success:
|
||||
name: conformance-required
|
||||
needs:
|
||||
- standard
|
||||
- ttl
|
||||
|
@ -979,5 +980,25 @@ jobs:
|
|||
- monitor-helm-secret-size
|
||||
- check-tests
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ success() }}
|
||||
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 }}
|
||||
|
|
Loading…
Add table
Reference in a new issue