Skip to content

Commit

Permalink
re-add support for Go 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann committed Jun 1, 2023
1 parent d709d90 commit aa28979
Show file tree
Hide file tree
Showing 32 changed files with 1,536 additions and 586 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/gotip.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
run: |
git clone --depth=1 https://go.googlesource.com/go $HOME/gotip
cd $HOME/gotip/src
git fetch https://go.googlesource.com/go refs/changes/15/498215/1 && git checkout FETCH_HEAD
git fetch https://go.googlesource.com/go refs/changes/35/499235/3 && git checkout FETCH_HEAD
./make.bash
echo "GOROOT=$HOME/gotip" >> $GITHUB_ENV
echo "$HOME/gotip/bin:$PATH" >> $GITHUB_PATH
Expand All @@ -26,3 +26,5 @@ jobs:
run: echo "QLOGFLAG= -qlog" >> $GITHUB_ENV
- name: Run self tests, using QUIC v1
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 v1, with race detector
run: go run github.com/onsi/ginkgo/v2/ginkgo -race -r -v -randomize-all -randomize-suites -trace integrationtests/self -- -version=1 ${{ env.QLOGFLAG }}
2 changes: 2 additions & 0 deletions .golangci.yml
@@ -1,4 +1,6 @@
run:
skip-files:
- internal/handshake/cipher_suite.go
linters-settings:
depguard:
type: blacklist
Expand Down
1 change: 1 addition & 0 deletions codecov.yml
Expand Up @@ -8,6 +8,7 @@ coverage:
- http3/gzip_reader.go
- interop/
- internal/ackhandler/packet_linkedlist.go
- internal/handshake/cipher_suite.go
- internal/utils/byteinterval_linkedlist.go
- internal/utils/newconnectionid_linkedlist.go
- internal/utils/packetinterval_linkedlist.go
Expand Down

0 comments on commit aa28979

Please sign in to comment.