From e68bca656382e342fc5afb950ccb54deceb93c38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Mon, 18 Dec 2023 14:12:57 +0100 Subject: [PATCH] chore: fix conformance tests (#9187) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- .github/workflows/conformance.yaml | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml index 3d1e437b4d..584f6df789 100644 --- a/.github/workflows/conformance.yaml +++ b/.github/workflows/conformance.yaml @@ -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!" \ No newline at end of file + - 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 }}