From c70e4ecf881c99043fee22cf08d23b03643659d3 Mon Sep 17 00:00:00 2001 From: Gabriele Gerbino Date: Wed, 3 Jul 2024 17:26:19 +0200 Subject: [PATCH] ci: ignore errors on latest images --- .github/workflows/integration-enterprise.yaml | 1 + .github/workflows/integration.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/integration-enterprise.yaml b/.github/workflows/integration-enterprise.yaml index 6c1eb69..332e78f 100644 --- a/.github/workflows/integration-enterprise.yaml +++ b/.github/workflows/integration-enterprise.yaml @@ -53,3 +53,4 @@ jobs: env: KONG_LICENSE_DATA: ${{ steps.license.outputs.license }} run: make test-integration + continue-on-error: ${{ matrix.kong_image == 'kong/kong-gateway-dev:latest' }} diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 19de300..fd64074 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -40,3 +40,4 @@ jobs: run: make setup-kong - name: Run integration tests run: make test-integration + continue-on-error: ${{ matrix.kong_image == 'kong/kong:master' }}