-
Notifications
You must be signed in to change notification settings - Fork 20
57 lines (48 loc) · 1.51 KB
/
test.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
name: Test
on:
push:
branches:
- '**'
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
jobs:
test:
name: Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Build
if: matrix.os != 'windows-latest'
run: |
go build -v -trimpath -ldflags '-s -w' ./cmd/shadowsocks-go
go build -v -trimpath -ldflags '-s -w' ./cmd/shadowsocks-go-domain-set-converter
- name: Build with tag tfogo_checklinkname0
if: matrix.os == 'windows-latest'
run: |
go build -v -trimpath -ldflags '-s -w -checklinkname=0' -tags tfogo_checklinkname0 ./cmd/shadowsocks-go
go build -v -trimpath -ldflags '-s -w -checklinkname=0' -tags tfogo_checklinkname0 ./cmd/shadowsocks-go-domain-set-converter
- name: Test
run: go test -v ./...
- name: Test with tag tfogo_checklinkname0
if: matrix.os == 'windows-latest'
run: go test -v -ldflags '-checklinkname=0' -tags tfogo_checklinkname0 ./...
- name: Upload Binaries
uses: actions/upload-artifact@v4
with:
name: shadowsocks-go-${{ github.sha }}-${{ matrix.os }}-x86-64
path: shadowsocks-go*