Skip to content

Commit

Permalink
test with go1.21 patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnywong committed Jul 20, 2024
1 parent dbcbb2e commit c35640e
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/gotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,21 @@ jobs:
distribution: goreleaser
version: "~> v1"
args: release --clean --snapshot --skip=publish
test-win7-go1_20:
test-win7-patch:
runs-on: ubuntu-latest
steps:
- name: Checkout tsshd
- name: Checkout trzsz-ssh
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.20"
go-version: "1.21"
- name: Revert Go1.21
run: |
cd $(go env GOROOT)
curl https://github.com/golang/go/commit/9e43850a3298a9b8b1162ba0033d4c53f8637571.diff | patch --verbose -R -p 1
- name: Build tsshd
run: |
sed -i 's/go 1\.21/go 1.20/g' go.mod
go get github.com/xtaci/kcp-go/[email protected] github.com/quic-go/[email protected]
go mod tidy
go test -v -tags win7 -count=1 ./tsshd
GOOS=windows GOARCH=386 go build -tags win7 -o tsshd_win7_i386/ ./cmd/tsshd/
GOOS=windows GOARCH=amd64 go build -tags win7 -o tsshd_win7_x86_64/ ./cmd/tsshd/
go test -v -count=1 ./tsshd
GOOS=windows GOARCH=386 go build -o tsshd_win7_i386/ ./cmd/tsshd/
GOOS=windows GOARCH=amd64 go build -o tsshd_win7_x86_64/ ./cmd/tsshd/

0 comments on commit c35640e

Please sign in to comment.