-
-
Notifications
You must be signed in to change notification settings - Fork 2
235 lines (224 loc) · 8.18 KB
/
main.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
name: 'Main'
on:
push:
tags: ['*']
branches: ['*']
pull_request:
branches: ['*']
workflow_dispatch:
permissions: {}
jobs:
gofmt:
name: 'Gofmt'
runs-on: 'ubuntu-latest'
permissions:
contents: 'read'
steps:
- name: 'Checkout'
uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29'
- name: 'Set up Go'
uses: 'actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7'
with:
go-version-file: './go.mod'
check-latest: true
- name: 'Gofmt'
run: |
make gofmt
staticcheck:
name: 'Staticcheck'
runs-on: 'ubuntu-latest'
permissions:
contents: 'read'
steps:
- name: 'Checkout'
uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29'
- name: 'Set up Go'
uses: 'actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7'
with:
go-version-file: './go.mod'
check-latest: true
- name: 'Staticcheck'
uses: 'dominikh/staticcheck-action@fe1dd0c3658873b46f8c9bb3291096a617310ca6'
with:
install-go: false
test:
name: 'Test on ${{ matrix.os }}'
needs: ['gofmt', 'staticcheck']
runs-on: '${{ matrix.os }}'
permissions:
contents: 'read'
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
steps:
- name: 'Checkout'
uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29'
- name: 'Set up Go'
uses: 'actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7'
with:
go-version-file: './go.mod'
check-latest: true
- name: 'Test'
run: |
make test
test-race:
name: 'Test race'
needs: ['gofmt', 'staticcheck']
runs-on: 'ubuntu-latest'
permissions:
contents: 'read'
steps:
- name: 'Checkout'
uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29'
- name: 'Set up Go'
uses: 'actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7'
with:
go-version-file: './go.mod'
check-latest: true
- name: 'Test race'
run: |
make test-race
test-e2e:
name: 'Test e2e'
needs: ['gofmt', 'staticcheck']
runs-on: 'ubuntu-20.04'
permissions:
contents: 'read'
steps:
- name: 'Checkout'
uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29'
- name: 'Set up Go'
uses: 'actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7'
with:
go-version-file: './go.mod'
check-latest: true
- name: 'Test e2e'
run: |
make test-e2e
build:
name: >-
Build for
${{ matrix.go.GOOS }}-${{ matrix.go.GOARCH }}
${{ matrix.go.GOARM != '' && format('v{0}', matrix.go.GOARM) || '' }}
needs: ['test', 'test-race', 'test-e2e']
runs-on: 'ubuntu-latest'
permissions:
contents: 'read'
strategy:
fail-fast: false
matrix:
go: [
{ GOOS: 'linux', GOARCH: 'amd64' },
{ GOOS: 'linux', GOARCH: 'arm64' },
{ GOOS: 'linux', GOARCH: 'arm', GOARM: '7' },
{ GOOS: 'linux', GOARCH: 'arm', GOARM: '6' },
{ GOOS: 'linux', GOARCH: 'riscv64' },
{ GOOS: 'linux', GOARCH: 'ppc64le' },
{ GOOS: 'linux', GOARCH: 's390x' },
{ GOOS: 'windows', GOARCH: 'amd64' },
{ GOOS: 'windows', GOARCH: 'arm64' },
{ GOOS: 'darwin', GOARCH: 'amd64' },
{ GOOS: 'darwin', GOARCH: 'arm64' },
]
steps:
- name: 'Checkout'
uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29'
- name: 'Set up Go'
uses: 'actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7'
with:
go-version-file: './go.mod'
check-latest: true
- name: 'Build'
run: |
make build \
GOOS="${{ matrix.go.GOOS }}" \
GOARCH="${{ matrix.go.GOARCH }}" \
GOARM="${{ matrix.go.GOARM }}"
file ./dist/*-*-* && gzip -nv ./dist/*-*-*
- name: 'Upload artifacts'
uses: 'actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808'
with:
name: 'dist-${{ matrix.go.GOOS }}-${{ matrix.go.GOARCH }}-${{ matrix.go.GOARM }}'
path: './dist/*.gz'
retention-days: 1
build-push-docker:
name: 'Build and push Docker images'
needs: ['build']
runs-on: 'ubuntu-latest'
permissions:
contents: 'read'
steps:
- name: 'Checkout'
uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29'
- name: 'Set up QEMU'
uses: 'docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3'
- name: 'Set up Docker Buildx'
uses: 'docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb'
- name: 'Login to Docker Hub'
if: "github.event_name != 'pull_request'"
uses: 'docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20'
with:
registry: 'docker.io'
username: '${{ secrets.DOCKERHUB_USERNAME }}'
password: '${{ secrets.DOCKERHUB_TOKEN }}'
- name: 'Extract metadata'
id: 'meta'
uses: 'docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81'
with:
images: |
docker.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{major}}
- name: 'Build and push'
uses: 'docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0'
with:
context: './'
platforms: 'linux/amd64,linux/arm64/v8,linux/arm/v7,linux/arm/v6,linux/riscv64,linux/ppc64le,linux/s390x'
tags: '${{ steps.meta.outputs.tags }}'
labels: '${{ steps.meta.outputs.labels }}'
push: "${{ github.event_name != 'pull_request' }}"
release-github:
name: 'Create GitHub release'
if: "startsWith(github.ref, 'refs/tags/v')"
needs: ['build', 'build-push-docker']
runs-on: 'ubuntu-latest'
permissions:
contents: 'write'
steps:
- name: 'Download artifacts'
uses: 'actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e'
with:
pattern: 'dist-*'
merge-multiple: true
- name: 'Create release'
env:
GITHUB_PAT: '${{ secrets.GITHUB_TOKEN }}'
run: |
RELEASE_STATUS="$(curl -fs --proto '=https' --tlsv1.3 --globoff \
--url "https://api.github.com/repos/${GITHUB_REPOSITORY:?}/releases/tags/${GITHUB_REF_NAME:?}" \
--header "Authorization: Bearer ${GITHUB_PAT:?}" \
--header 'Accept: application/vnd.github.v3+json' \
--header 'Content-Type: application/json' \
--write-out '%{http_code}' --output /dev/null ||:)"
if [ "${RELEASE_STATUS:?}" = '200' ]; then exit 0; fi
RELEASE_ID="$(curl -fsS --proto '=https' --tlsv1.3 --globoff \
--url "https://api.github.com/repos/${GITHUB_REPOSITORY:?}/releases" \
--header "Authorization: Bearer ${GITHUB_PAT:?}" \
--header 'Accept: application/vnd.github.v3+json' \
--header 'Content-Type: application/json' \
--data "$(jq -rn --arg tag "${GITHUB_REF_NAME:?}" '{"name": $tag, "tag_name": $tag, "generate_release_notes": true}')" | jq -r '.id')"
if [ -z "${RELEASE_ID-}" ] || [ "${RELEASE_ID:?}" = 'null' ]; then exit 1; fi
for asset in ./*; do
[ -f "${asset:?}" ] || continue
encodedAssetName="$(jq -rn --arg v "$(basename "${asset:?}")" '$v|@uri')"
curl -fsS --proto '=https' --tlsv1.3 --globoff \
--url "https://uploads.github.com/repos/${GITHUB_REPOSITORY:?}/releases/${RELEASE_ID:?}/assets?name=${encodedAssetName:?})" \
--header "Authorization: Bearer ${GITHUB_PAT:?}" \
--header 'Accept: application/vnd.github.v3+json' \
--header 'Content-Type: application/octet-stream' \
--data-binary "@${asset:?}" --output /dev/null
done