-
-
Notifications
You must be signed in to change notification settings - Fork 3
68 lines (68 loc) · 1.93 KB
/
gotest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Go test tsshd
on: [push]
jobs:
go-test-on-linux:
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: go test
run: go test -v -count=1 ./tsshd
go-test-on-macos:
runs-on: macos-latest
steps:
- name: Checkout tsshd
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: go test
run: go test -v -count=1 ./tsshd
go-test-on-windows:
runs-on: windows-latest
steps:
- name: Checkout tsshd
uses: actions/checkout@v4
- name: Set up Go
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/