From b8271d9c707b202ba0f6dcd2ffeed6d894f6fa63 Mon Sep 17 00:00:00 2001 From: Marek Siarkowicz Date: Tue, 10 Oct 2023 21:08:14 +0200 Subject: [PATCH] Continue on e2e failure E2e tests has been flaky, with failfast and 2 scenarios tests are twice as fragile. Any early failure of one of the scenarios cases second to be canceled. Retryign always require running both scenarios. Intead let's just wait as in other tests allowing us to retry just the scenario that failed Signed-off-by: Marek Siarkowicz --- .github/workflows/e2e-arm64-template.yaml | 2 +- .github/workflows/e2e.yaml | 2 +- .github/workflows/grpcproxy.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-arm64-template.yaml b/.github/workflows/e2e-arm64-template.yaml index 100bf7a752a..2ef44639341 100644 --- a/.github/workflows/e2e-arm64-template.yaml +++ b/.github/workflows/e2e-arm64-template.yaml @@ -17,7 +17,7 @@ jobs: run: shell: bash strategy: - fail-fast: true + fail-fast: false matrix: target: - linux-arm64-e2e diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index a38e3cadae6..0987daca078 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -11,7 +11,7 @@ jobs: run: shell: bash strategy: - fail-fast: true + fail-fast: false matrix: target: - linux-amd64-e2e diff --git a/.github/workflows/grpcproxy.yaml b/.github/workflows/grpcproxy.yaml index 969765f404d..f83f72968d8 100644 --- a/.github/workflows/grpcproxy.yaml +++ b/.github/workflows/grpcproxy.yaml @@ -10,7 +10,7 @@ jobs: run: shell: bash strategy: - fail-fast: true + fail-fast: false matrix: target: - linux-amd64-grpcproxy-integration