-
Notifications
You must be signed in to change notification settings - Fork 175
513 lines (437 loc) · 13.4 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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- published
jobs:
test-go:
name: Test Go code
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.3
cache: false
- name: Restore cache
id: cache-go-modules
if: github.event_name == 'pull_request'
uses: actions/cache/restore@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-${{ github.ref_name }}-go-modules-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-main-go-modules-
- name: Fetch all Go modules
if: steps.cache-go-modules.outputs.cache-hit != 'true'
run: make download-deps-go
- name: Mock web assets
run: make mock-assets
- name: Test Go code
run: make test-go
- name: Report code coverage
uses: codecov/[email protected]
with:
flags: backend
files: ./coverage.txt
token: c77c73a6-81e1-4fa1-8372-9170d7953d41
lint-go:
name: Lint Go code
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.3
cache: false
- name: Restore cache
id: cache-go-modules
if: github.event_name == 'pull_request'
uses: actions/cache/restore@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-${{ github.ref_name }}-go-modules-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-main-go-modules-
- name: Fetch all Go modules
if: steps.cache-go-modules.outputs.cache-hit != 'true'
run: make download-deps-go
- name: Mock web assets
run: make mock-assets
- name: Lint Go code
run: make make lint-go
test-js:
name: Test JS code
runs-on: ubuntu-latest
strategy:
matrix:
env:
- ""
- "env TZ=Pacific/Easter"
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node JS
uses: actions/setup-node@v4
with:
node-version: 23.1.0
cache: "npm"
cache-dependency-path: "ui/package-lock.json"
- name: Test Node JS code
run: ${{ matrix.env }} make -C ui test-js
env:
NODE_ENV: test
- name: Report code coverage
uses: codecov/[email protected]
with:
flags: ui
directory: ./ui/coverage
token: c77c73a6-81e1-4fa1-8372-9170d7953d41
lint-js:
name: Lint JS code
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node JS
uses: actions/setup-node@v4
with:
node-version: 23.1.0
cache: "npm"
cache-dependency-path: "ui/package-lock.json"
- name: Lint Node JS code
run: make -C ui lint-js
format-go:
name: Check Go code formatting
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.3
cache: false
- name: Format Go code
run: make format-go
- name: Check for local changes
run: git diff --exit-code
format-js:
name: Check JS code formatting
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node JS
uses: actions/setup-node@v4
with:
node-version: 23.1.0
cache: "npm"
cache-dependency-path: "ui/package-lock.json"
- name: Lint Node JS code
run: make -C ui format
- name: Check for local changes
run: git diff --exit-code
deps-js:
name: Check JS dependencies
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: depcheck
uses: prymitive/[email protected]
with:
workdir: "./ui"
config: "./ui/.depcheckrc.yaml"
package-lock:
name: Check package-lock.json
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node JS
uses: actions/setup-node@v4
with:
node-version: 23.1.0
cache: "npm"
cache-dependency-path: "ui/package-lock.json"
- name: Run npm install
run: cd ui && npm i
- name: Check for local changes
run: git diff --exit-code
lint-versions:
name: Lint Versions
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Lint Bootstrap Version
run: make lint-bootstrap-version
typescript:
name: Check for non-typescript components
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Check for non-typescript UI components
run: make -C ui lint-typescript
git-commit:
name: Lint git commit
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint git commit
uses: wagoid/[email protected]
with:
configFile: .commitlintrc.cjs
docs:
name: Lint documentation
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run markdown-lint
uses: avto-dev/[email protected]
with:
config: .markdownlint.yml
args: "*.md docs"
stage-test-and-lint:
name: "=== Test and lint stage ==="
needs:
- test-go
- test-js
- lint-go
- lint-js
- format-go
- format-js
- deps-js
- package-lock
- lint-versions
- typescript
- git-commit
- docs
runs-on: ubuntu-latest
steps:
- name: All linters passed
run: "true"
benchmark-go:
name: Benchmark Go code compare
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
needs: stage-test-and-lint
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Get modified files
uses: dorny/[email protected]
id: filter
with:
list-files: "shell"
filters: |
backend:
- 'cmd/**/*'
- 'internal/**/*'
- 'go.mod'
- 'go.sum'
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.3
cache: false
- name: Restore cache
uses: actions/cache/restore@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-benchmark-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-benchmark-
- name: Fetch all Go modules
if: steps.cache-go-modules.outputs.cache-hit != 'true'
run: make download-deps-go
- name: Mock web assets
if: steps.filter.outputs.backend == 'true'
run: make mock-assets
- name: Run benchmark
if: steps.filter.outputs.backend == 'true'
run: ./scripts/ci-diff-benchmark-go.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_REQUEST_NUMBER: ${{ github.event.number }}
webpack-bundle-size:
name: Webpack bundle size compare
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
needs: stage-test-and-lint
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Get modified files
uses: dorny/[email protected]
id: filter
with:
list-files: "shell"
filters: |
ui:
- 'ui/**/*'
- name: Set up Node JS
uses: actions/setup-node@v4
with:
node-version: 23.1.0
cache: "npm"
cache-dependency-path: "ui/package-lock.json"
- name: Diff bundle size
if: steps.filter.outputs.ui == 'true'
run: ./scripts/ci-diff-webpack.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_REQUEST_NUMBER: ${{ github.event.number }}
cross-compile:
name: Cross compile binaries
needs: stage-test-and-lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.3
cache: false
- name: Cache Go
if: github.event_name != 'pull_request'
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Restore cache
if: github.event_name == 'pull_request'
uses: actions/cache/restore@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Set up Node JS
uses: actions/setup-node@v4
with:
node-version: 23.1.0
cache: "npm"
cache-dependency-path: "ui/package-lock.json"
- name: Cross compile binaries
if: github.event_name != 'pull_request'
run: make -j2 crosscompile
- name: Cross compile binaries (PR)
if: github.event_name == 'pull_request'
run: make -j2 cc-linux-386 cc-linux-amd64 cc-linux-arm64 cc-windows-amd64
- name: Compress binaries
shell: bash
run: |
mkdir -p artifacts
export SOURCE_DATE_EPOCH=$(git show -s --format=%ci ${GITHUB_SHA})
for i in karma-*; do tar --mtime="${SOURCE_DATE_EPOCH}" --owner=0 --group=0 --numeric-owner -c $i | gzip -n - > artifacts/$i.tar.gz; done
(cd artifacts && shasum -a 512 karma-*.tar.gz | tee sha512sum.txt)
- name: Get release
if: github.event_name == 'release'
id: get_release
uses: bruceadams/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Upload binaries to GitHub release
if: github.event_name == 'release'
uses: AButler/[email protected]
with:
files: "artifacts/*"
repo-token: ${{ secrets.GITHUB_TOKEN }}
docker:
name: Build docker image
needs: stage-test-and-lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: lmierzwa
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_PKG_TOKEN }}
- name: "Setup docker tags (latest + vX.Y)"
if: github.event_name == 'release'
run: |
echo 'DOCKER_TAGS<<EOF' >> $GITHUB_ENV
echo 'lmierzwa/karma:${{ github.ref_name }}' >> $GITHUB_ENV
echo 'lmierzwa/karma:latest' >> $GITHUB_ENV
echo 'ghcr.io/prymitive/karma:${{ github.ref_name }}' >> $GITHUB_ENV
echo 'ghcr.io/prymitive/karma:latest' >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: "Setup docker tags (latest)"
if: github.event_name != 'release'
run: |
echo 'DOCKER_TAGS<<EOF' >> $GITHUB_ENV
echo 'lmierzwa/karma:latest' >> $GITHUB_ENV
echo 'ghcr.io/prymitive/karma:latest' >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: "Setup docker plaforms (merge/release)"
if: github.event_name != 'pull_request'
run: |
echo "DOCKER_PATFORMS=linux/amd64,linux/arm64" >> $GITHUB_ENV
- name: "Setup docker plaforms (PR)"
if: github.event_name == 'pull_request'
run: |
echo "DOCKER_PATFORMS=linux/amd64" >> $GITHUB_ENV
- name: "Setup image version"
run: |
echo "VERSION=$(make show-version)" >> $GITHUB_ENV
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
platforms: ${{ env.DOCKER_PATFORMS }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ env.DOCKER_TAGS }}
build-args: |
VERSION=${{ env.VERSION }}