From 30da0a427f1cd457e6631dcca5d8944dcf64b0ea Mon Sep 17 00:00:00 2001 From: Federico Paolinelli Date: Thu, 11 Jul 2024 06:42:33 -0400 Subject: [PATCH] CI: disable the leak / advertising tests Leaking advertised networks doesn't work in FRR 9.1, so we disable the test. We will re-enable them once the CI is stable with FRR 10. Signed-off-by: Federico Paolinelli --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9804264d..32a78107 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -173,6 +173,7 @@ jobs: if [ "${{ matrix.ip-family }}" == "ipv4" ]; then SKIP="$SKIP\|IPV6\|DUALSTACK"; fi if [ "${{ matrix.ip-family }}" == "dual" ]; then SKIP="$SKIP\|IPV6"; fi if [ "${{ matrix.ip-family }}" == "ipv6" ]; then SKIP="$SKIP\|IPV4\|DUALSTACK"; fi + SKIP="$SKIP\|Leaked.*advertising" # TODO fixed by frr 10.0, remove this when https://github.com/metallb/frr-k8s/issues/165 is fixed GINKGO_ARGS="--skip $SKIP" TEST_ARGS="--report-path=/tmp/kind_logs" make e2etests - name: Export kind logs