From e058f56643f5e1f56208ccb859c2256f419c12cd Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 25 Aug 2023 08:23:44 +0700 Subject: [PATCH] ci: fix integration test running with and without GSO (#4043) --- .github/workflows/integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0b8fa904..be5efa59 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -37,10 +37,10 @@ jobs: - name: Run self tests, using QUIC v2 if: success() || failure() # run this step even if the previous one failed run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace integrationtests/self -- -version=2 ${{ env.QLOGFLAG }} - - name: Run set tests, with GSO enabled - if: success() || failure() # run this step even if the previous one failed + - name: Run self tests, with GSO disabled + if: ${{ matrix.os == 'ubuntu' && (success() || failure()) # run this step even if the previous one failed env: - QUIC_GO_ENABLE_GSO: true + QUIC_GO_DISABLE_GSO: true run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace integrationtests/self -- -version=1 ${{ env.QLOGFLAG }} - name: Run tests (32 bit) if: ${{ matrix.os != 'macos' && (success() || failure()) }} # run this step even if the previous one failed