-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
- name: Checkout tsshd | ||
uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
- name: go test | ||
|
@@ -18,7 +18,7 @@ jobs: | |
- name: Checkout tsshd | ||
uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
- name: go test | ||
|
@@ -29,8 +29,40 @@ jobs: | |
- name: Checkout tsshd | ||
uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
- name: go test | ||
run: go test -v -count=1 ./tsshd | ||
go-release-snapshot: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout tsshd | ||
uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v6 | ||
with: | ||
distribution: goreleaser | ||
version: "~> v1" | ||
args: release --clean --snapshot --skip=publish | ||
test-win7-go1_20: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout tsshd | ||
uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.20" | ||
- 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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters