-
Notifications
You must be signed in to change notification settings - Fork 6
199 lines (164 loc) · 6.13 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
name: CI
on:
pull_request:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: "1.21"
check-latest: true
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Fetch build tools
run: |
go install golang.org/x/lint/golint@latest
go install gotest.tools/gotestsum@latest
- name: Build
run: go build -v ./...
- name: Lint
run: golint -set_exit_status ./...
- name: Test
run: |
mkdir -p tmp/test-results
gotestsum --junitfile tmp/test-results/gotestsum-report.xml ./...
- name: Upload test results to BuildPulse for flaky test detection -- Inception! 🤯
if: "!cancelled()" # Run this step even when the tests fail. Skip if the workflow is cancelled.
env:
BUILDPULSE_ACCESS_KEY_ID: ${{ secrets.BUILDPULSE_ACCESS_KEY_ID }}
BUILDPULSE_SECRET_ACCESS_KEY: ${{ secrets.BUILDPULSE_SECRET_ACCESS_KEY }}
run: |
curl -fsSL https://github.com/buildpulse/test-reporter/releases/latest/download/test-reporter-linux-amd64 > ./buildpulse-test-reporter
chmod +x ./buildpulse-test-reporter
./buildpulse-test-reporter submit tmp/test-results --account-id 68192324 --repository-id 280914963
govulncheck:
name: Vulnerability check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: "1.21"
check-latest: true
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run govulncheck
run: govulncheck ./...
smoke-test:
name: Smoke test
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get_version.outputs.version }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: "1.21"
check-latest: true
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build executable binaries
run: ./script/build-snapshot --single-target
- name: Output version from binary
run: ./dist/linux_linux_amd64/test-reporter --version
- name: Verify binary can successfully package up test results and upload them to BuildPulse
env:
BUILDPULSE_ACCESS_KEY_ID: ${{ secrets.BUILDPULSE_ACCESS_KEY_ID }}
BUILDPULSE_SECRET_ACCESS_KEY: ${{ secrets.BUILDPULSE_SECRET_ACCESS_KEY }}
run: |
mkdir -p fake-test-results-dir
touch fake-test-results-dir/report.xml
./dist/linux_linux_amd64/test-reporter submit fake-test-results-dir --account-id 68192324 --repository-id 280914963
create-release:
name: Create draft release
# If the push that triggered this is a tag that starts with "v" (e.g., v1.0.0)
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
needs: [build, smoke-test]
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
check-latest: true
- name: Install upx
run: brew install upx
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload binaries as build artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: dist/
retention-days: 90
- name: Set tag name for downstream jobs
id: tag
run: echo "::set-output name=tag::${GITHUB_REF#refs/*/}"
outputs:
tag: ${{ steps.tag.outputs.tag }}
verify-alpine:
name: Verify binary (Alpine)
needs: create-release
runs-on: ubuntu-latest
steps:
- name: Download binary from release
run: gh release download ${{ needs.create-release.outputs.tag }} --repo ${{ github.repository }} --pattern 'test-reporter-linux-amd64' --dir dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 'Verify basic "runnability"'
run: docker run --volume $(pwd):/tmp --workdir /tmp alpine:3.12 sh -c "chmod +x dist/test-reporter-linux-amd64 && dist/test-reporter-linux-amd64 --version"
verify-macos:
name: Verify binary (macOS)
needs: create-release
runs-on: macos-latest
steps:
- name: Download binary from release
run: gh release download ${{ needs.create-release.outputs.tag }} --repo ${{ github.repository }} --pattern 'test-reporter-darwin-amd64' --dir dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 'Verify basic "runnability"'
run: |
chmod +x dist/test-reporter-darwin-amd64
dist/test-reporter-darwin-amd64 --version
verify-ubuntu:
name: Verify binary (Ubuntu)
needs: create-release
runs-on: ubuntu-latest
steps:
- name: Download binary from release
run: gh release download ${{ needs.create-release.outputs.tag }} --repo ${{ github.repository }} --pattern 'test-reporter-linux-amd64' --dir dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 'Verify basic "runnability"'
run: |
chmod +x dist/test-reporter-linux-amd64
dist/test-reporter-linux-amd64 --version
verify-windows:
name: Verify binary (Windows)
needs: create-release
runs-on: windows-latest
steps:
- name: Download binary from release
run: gh release download ${{ needs.create-release.outputs.tag }} --repo ${{ github.repository }} --pattern 'test-reporter-windows-amd64.exe' --dir dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 'Verify basic "runnability"'
run: dist/test-reporter-windows-amd64.exe --version