From a19847666463ea5f34afa37200cc085df8b67165 Mon Sep 17 00:00:00 2001 From: Jo Zzsi Date: Tue, 5 Nov 2024 08:34:03 -0500 Subject: [PATCH] ci: only run networking tests after extended tests have passed Save some CI cycles and do not bother running networking tests if non-networking tests fail. --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index ed0f3617f..4068f192c 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -194,7 +194,7 @@ jobs: - name: "${{ matrix.container }} TEST-${{ matrix.test }}" run: docker run --platform linux/arm64 '--device=/dev/kvm' -v $PWD:/w ghcr.io/dracut-ng/${{ matrix.container }} /w/test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} network: - needs: basic + needs: [basic, extended] # all nfs based on default networking name: ${{ matrix.test }} on ${{ matrix.container }} runs-on: ubuntu-latest