generated from axetroy/go-cli-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 10
107 lines (90 loc) · 2.86 KB
/
ci.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: ci
on: [push, pull_request]
jobs:
ci:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
go: ["^1.17"]
os: [ubuntu-latest, macOS-latest, windows-latest]
name: Go ${{ matrix.go }} in ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-go@v3
with:
stable: '!contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")'
go-version: ${{ matrix.go }}
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Environment
run: |
go version
go env
node -v
npm -v
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.43.0
args: --timeout=5m30s
skip-go-installation: true
- name: Install npm package
working-directory: ./npm
run: |
npm i
- name: Build npm package
working-directory: ./npm
run: |
npm run build
- name: Test
run: |
make test
go mod tidy
git checkout ./
- name: Generate share lib
run: |
go build -buildmode=c-shared -o dist/whatchanged.dylib ./cmd/whatchanged-ffi
go build -buildmode=c-shared -o dist/whatchanged.dll ./cmd/whatchanged-ffi
go build -buildmode=c-shared -o dist/whatchanged.so ./cmd/whatchanged-ffi
- name: Build
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist --skip-publish --skip-validate
- name: Generate changelog
run: |
go run -mod=vendor ./cmd/whatchanged/main.go HEAD~
release:
name: Release to Github
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'release-lab/whatchanged'
needs: [ci]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
stable: '!contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")'
go-version: ^1.17
- name: Generate release.md
run: |
./cmd/whatchanged/run.sh --output=release.md
cat release.md
- name: Generate share lib
run: |
go build -buildmode=c-shared -o lib/whatchanged.dylib ./cmd/whatchanged-ffi
go build -buildmode=c-shared -o lib/whatchanged.dll ./cmd/whatchanged-ffi
go build -buildmode=c-shared -o lib/whatchanged.so ./cmd/whatchanged-ffi
- name: Release to Github
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist --release-notes=./release.md
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}