mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
fix: uquic sync error
...so that uquic build/test shall pass and examples shall work again.
This commit is contained in:
parent
856bc02b8f
commit
9b03bc282c
12 changed files with 142 additions and 63 deletions
24
.github/workflows/ginkgo_test.yml
vendored
24
.github/workflows/ginkgo_test.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
# os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
|
||||
go: [ "1.20.x", "1.21.0-rc.4" ]
|
||||
go: [ "1.20.x", "1.21.x" ]
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
@ -23,20 +23,36 @@ jobs:
|
|||
go-version: ${{ matrix.go }}
|
||||
- run: go version
|
||||
|
||||
- name: Run tests
|
||||
- name: Run unit tests
|
||||
env:
|
||||
TIMESCALE_FACTOR: 10
|
||||
run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -cover -randomize-all -randomize-suites -trace -skip-package integrationtests
|
||||
|
||||
# - name: Run tests (32 bit)
|
||||
# - name: Run unit tests (32 bit)
|
||||
# if: ${{ matrix.os != 'macos' }} # can't run 32 bit tests on OSX.
|
||||
# env:
|
||||
# TIMESCALE_FACTOR: 10
|
||||
# GOARCH: 386
|
||||
# run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -cover -coverprofile coverage.txt -output-dir . -randomize-all -randomize-suites -trace -skip-package integrationtests
|
||||
|
||||
# - name: Run tests with race detector
|
||||
# - name: Run unit tests with race detector
|
||||
# if: ${{ matrix.os == 'ubuntu' }} # speed things up. Windows and OSX VMs are slow
|
||||
# env:
|
||||
# TIMESCALE_FACTOR: 20
|
||||
# run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -race -randomize-all -randomize-suites -trace -skip-package integrationtests
|
||||
|
||||
- name: Run other tests
|
||||
run: |
|
||||
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
|
||||
- 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
|
||||
- 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
|
||||
- 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_DISABLE_GSO: true
|
||||
run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace integrationtests/self -- -version=1
|
Loading…
Add table
Add a link
Reference in a new issue