mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
ci: run integration tests for all QUIC versions, even if steps failed (#3882)
This commit is contained in:
parent
f777c452ce
commit
4b03636102
1 changed files with 5 additions and 0 deletions
5
.github/workflows/integration.yml
vendored
5
.github/workflows/integration.yml
vendored
|
@ -26,16 +26,21 @@ jobs:
|
||||||
go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace -skip-package self,versionnegotiation integrationtests
|
go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace -skip-package self,versionnegotiation integrationtests
|
||||||
go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace integrationtests/versionnegotiation -- ${{ env.QLOGFLAG }}
|
go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace integrationtests/versionnegotiation -- ${{ env.QLOGFLAG }}
|
||||||
- name: Run self tests, using draft-29
|
- name: Run self tests, using draft-29
|
||||||
|
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=draft29 ${{ env.QLOGFLAG }}
|
run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace integrationtests/self -- -version=draft29 ${{ env.QLOGFLAG }}
|
||||||
- name: Run self tests, using QUIC v1
|
- name: Run self tests, using QUIC v1
|
||||||
|
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=1 ${{ env.QLOGFLAG }}
|
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
|
- 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 }}
|
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
|
- name: Run set tests, with GSO disabled
|
||||||
|
if: success() || failure() # run this step even if the previous one failed
|
||||||
env:
|
env:
|
||||||
QUIC_GO_DISABLE_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 }}
|
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)
|
- name: Run tests (32 bit)
|
||||||
|
if: success() || failure() # run this step even if the previous one failed
|
||||||
env:
|
env:
|
||||||
GOARCH: 386
|
GOARCH: 386
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue