mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
add support for Go 1.20 (#3641)
This commit is contained in:
parent
2aa71ff76b
commit
576d85cd3d
9 changed files with 115 additions and 13 deletions
7
.github/workflows/cross-compile.yml
vendored
7
.github/workflows/cross-compile.yml
vendored
|
@ -4,14 +4,13 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
go: [ "1.18.x", "1.19.x" ]
|
||||
go: [ "1.18.x", "1.19.x", "1.20.0-rc.2" ]
|
||||
runs-on: ubuntu-latest
|
||||
name: "Cross Compilation (Go ${{matrix.go}})"
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-go@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
stable: '!contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")'
|
||||
go-version: ${{ matrix.go }}
|
||||
- name: Install build utils
|
||||
run: |
|
||||
|
|
6
.github/workflows/integration.yml
vendored
6
.github/workflows/integration.yml
vendored
|
@ -5,15 +5,15 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
go: [ "1.18.x", "1.19.x" ]
|
||||
go: [ "1.18.x", "1.19.x", "1.20.0-rc.2" ]
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
DEBUG: false # set this to true to export qlogs and save them as artifacts
|
||||
TIMESCALE_FACTOR: 3
|
||||
name: Integration Tests (Go ${{ matrix.go }})
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-go@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
stable: '!contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")'
|
||||
go-version: ${{ matrix.go }}
|
||||
|
|
7
.github/workflows/unit.yml
vendored
7
.github/workflows/unit.yml
vendored
|
@ -7,14 +7,13 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
os: [ "ubuntu", "windows", "macos" ]
|
||||
go: [ "1.18.x", "1.19.x" ]
|
||||
go: [ "1.18.x", "1.19.x", "1.20.0-rc.2" ]
|
||||
runs-on: ${{ matrix.os }}-latest
|
||||
name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-go@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
stable: '!contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")'
|
||||
go-version: ${{ matrix.go }}
|
||||
- run: go version
|
||||
- name: Run tests
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue