ci: also run integration tests with GSO disabled

This commit is contained in:
Marten Seemann 2023-05-07 12:09:51 +03:00
parent 5b5ffa942b
commit 97904d0b30
2 changed files with 11 additions and 0 deletions

View file

@ -31,6 +31,10 @@ jobs:
run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace integrationtests/self -- -version=1 ${{ env.QLOGFLAG }}
- name: Run self tests, using QUIC v2
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 disabled
env:
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)
env:
GOARCH: 386