mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
ci: fix syntax error in integration test workflow (#4048)
This commit is contained in:
parent
e058f56643
commit
8963306987
1 changed files with 1 additions and 2 deletions
3
.github/workflows/integration.yml
vendored
3
.github/workflows/integration.yml
vendored
|
@ -21,7 +21,6 @@ jobs:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-go@v3
|
- uses: actions/setup-go@v3
|
||||||
with:
|
with:
|
||||||
stable: '!contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")'
|
|
||||||
go-version: ${{ matrix.go }}
|
go-version: ${{ matrix.go }}
|
||||||
- run: go version
|
- run: go version
|
||||||
- name: set qlogger
|
- name: set qlogger
|
||||||
|
@ -38,7 +37,7 @@ jobs:
|
||||||
if: success() || failure() # run this step even if the previous one failed
|
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 self tests, with GSO disabled
|
- name: Run self tests, with GSO disabled
|
||||||
if: ${{ matrix.os == 'ubuntu' && (success() || failure()) # run this step even if the previous one failed
|
if: ${{ matrix.os == 'ubuntu' && (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 }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue