-
Notifications
You must be signed in to change notification settings - Fork 2
469 lines (424 loc) · 14.2 KB
/
ci.yaml
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
# Further CI inspiration
# https://gist.github.com/PurpleBooth/84b3d7d6669f77d5a53801a258ed269a
# https://github.com/qt-creator/qt-creator/blob/master/.github/workflows/build_cmake.yml
name: ci
on:
push:
branches:
- 'master'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false
jobs:
check:
name: Check
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build:
- default
- no_features
- stats
- web
- web_debug
- web_debug_static_embedded
- all_features
include:
- build: default
features: ""
no_default_features: false
all_features: false
release: true
- build: no_features
features: ""
no_default_features: true
all_features: false
release: true
- build: stats
features: stats
no_default_features: true
all_features: false
release: true
- build: web
features: web
no_default_features: true
all_features: false
release: true
- build: web_debug
features: web
no_default_features: true
all_features: false
release: false
- build: web_debug_static_embedded
features: debug_static_embedded
no_default_features: true
all_features: false
release: true
- build: all_features
features: ""
no_default_features: false
all_features: true
release: true
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
key: '${{ runner.os }}-cargo-registry-v2-${{ hashFiles(''**/Cargo.lock'') }}'
- uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-cargo-build-target-checks-${{ hashFiles('**/Cargo.lock') }}
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Create dummy web artifacts
run: mkdir -p webclients/svelte/build
- name: Run cargo check
run: cargo check ${{ matrix.features && '--features' }} ${{ matrix.features }} ${{ matrix.release && '--release' || '' }} ${{ matrix.no_default_features && '--no-default-features' || '' }} ${{ matrix.all_features && '--all-features' || '' }}
test:
name: Test Suite
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build:
- default
- no_features
- stats
- web
- web_debug
- web_debug_static_embedded
- all_features
include:
- build: default
features: ""
no_default_features: false
all_features: false
release: true
- build: no_features
features: ""
no_default_features: true
all_features: false
release: true
- build: stats
features: stats
no_default_features: true
all_features: false
release: true
- build: web
features: web
no_default_features: true
all_features: false
release: true
- build: web_debug
features: web
no_default_features: true
all_features: false
release: false
- build: web_debug_static_embedded
features: debug_static_embedded
no_default_features: true
all_features: false
release: true
- build: all_features
features: ""
no_default_features: false
all_features: true
release: true
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
key: '${{ runner.os }}-cargo-registry-v2-${{ hashFiles(''**/Cargo.lock'') }}'
- uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-cargo-build-target-test-${{ hashFiles('**/Cargo.lock') }}
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Create dummy web artifacts
run: mkdir -p webclients/svelte/build
- name: Install latest nextest release
uses: taiki-e/install-action@nextest
- name: Run cargo nextest
run: cargo nextest run --profile ci ${{ matrix.features && '--features' }} ${{ matrix.features }} ${{ matrix.release && '--release' || '' }} ${{ matrix.no_default_features && '--no-default-features' || '' }} ${{ matrix.all_features && '--all-features' || '' }}
env:
RUST_BACKTRACE: full
- name: Setup tmate session
if: ${{ failure() && github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
uses: mxschmitt/action-tmate@v3
lints:
name: Lints
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build:
- default
- no_features
- stats
- web
- web_debug
- web_debug_static_embedded
- all_features
include:
- build: default
features: ""
no_default_features: false
all_features: false
release: true
- build: no_features
features: ""
no_default_features: true
all_features: false
release: true
- build: stats
features: stats
no_default_features: true
all_features: false
release: true
- build: web
features: web
no_default_features: true
all_features: false
release: true
- build: web_debug
features: web
no_default_features: true
all_features: false
release: false
- build: web_debug_static_embedded
features: debug_static_embedded
no_default_features: true
all_features: false
release: true
- build: all_features
features: ""
no_default_features: false
all_features: true
release: true
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
key: '${{ runner.os }}-cargo-registry-v2-${{ hashFiles(''**/Cargo.lock'') }}'
- uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-cargo-build-target-checks-${{ hashFiles('**/Cargo.lock') }}
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Create dummy web artifacts
run: mkdir -p webclients/svelte/build
- name: Run cargo fmt
run: cargo fmt --all -- --check
continue-on-error: true
- name: Run cargo clippy
run: cargo clippy ${{ matrix.features && '--features' }} ${{ matrix.features }} ${{ matrix.release && '--release' || '' }} ${{ matrix.no_default_features && '--no-default-features' || '' }} ${{ matrix.all_features && '--all-features' || '' }} -- -D warnings
web_check:
name: Web Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: 'webclients/svelte/package-lock.json'
- name: Install node packages
run: npm ci
working-directory: webclients/svelte
- name: Run npm check
run: npm run check
working-directory: webclients/svelte
web_lints:
name: Web Lints
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: 'webclients/svelte/package-lock.json'
- name: Install node packages
run: npm ci
working-directory: webclients/svelte
- name: Run prettier and eslint
run: npm run lint
working-directory: webclients/svelte
build:
needs:
- check
- test
- lints
- web_check
- web_lints
name: Build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
build:
- linux_x64
- linux_x64_stats
- linux_x64_web
- linux_armv7
- linux_aarch64
- linux_aarch64_stats
- linux_aarch64_web
- mac_x64
- mac_x64_stats
- mac_x64_web
include:
- build: linux_x64
# building x86_64-unknown-linux-musl fails with not finding musl-gcc
rust_target_arch: x86_64-unknown-linux-gnu
os: ubuntu-latest
cross: false
features: ""
- build: linux_x64_stats
# building x86_64-unknown-linux-musl fails with not finding musl-gcc
rust_target_arch: x86_64-unknown-linux-gnu
os: ubuntu-latest
cross: false
features: stats
- build: linux_x64_web
# building x86_64-unknown-linux-musl fails with not finding musl-gcc
rust_target_arch: x86_64-unknown-linux-gnu
os: ubuntu-latest
cross: false
features: web
- build: linux_armv7
rust_target_arch: armv7-unknown-linux-musleabihf
os: ubuntu-latest
cross: true
features: ""
- build: linux_aarch64
rust_target_arch: aarch64-unknown-linux-musl
os: ubuntu-latest
cross: true
features: ""
- build: linux_aarch64_stats
rust_target_arch: aarch64-unknown-linux-musl
os: ubuntu-latest
cross: true
features: stats
- build: linux_aarch64_web
rust_target_arch: aarch64-unknown-linux-musl
os: ubuntu-latest
cross: true
features: web
- build: mac_x64
rust_target_arch: x86_64-apple-darwin
os: macos-latest
cross: false
features: ""
- build: mac_x64_stats
rust_target_arch: x86_64-apple-darwin
os: macos-latest
cross: false
features: stats
- build: mac_x64_web
rust_target_arch: x86_64-apple-darwin
os: macos-latest
cross: false
features: web
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache cargo registry
uses: actions/cache@v4
if: matrix.cross == true
with:
path: |
~/.cargo/registry
~/.cargo/git
key: '${{ runner.os }}-cargo-registry-v2-${{ hashFiles(''**/Cargo.lock'') }}'
- name: Cache target folder
uses: actions/cache@v4
if: matrix.cross == true
with:
path: target
key: ${{ runner.os }}-cargo-build-target-builds-${{ matrix.build }}-${{ hashFiles('**/Cargo.lock') }}
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.rust_target_arch }}
- name: Use smart rust cache
uses: Swatinem/rust-cache@v2
if: matrix.cross == false
with:
key: ${{ matrix.build }}
- name: Show project dependency graph
run: cargo tree
- name: Install cross
if: matrix.cross == true
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Setup node
uses: actions/setup-node@v4
if: matrix.features == 'web'
with:
node-version: 20
cache: npm
cache-dependency-path: 'webclients/svelte/package-lock.json'
- name: Install node packages
run: npm ci
working-directory: webclients/svelte
if: matrix.features == 'web'
- name: Generate types from the rust generated openapi schema
run: npm run apigen
working-directory: webclients/svelte
if: matrix.features == 'web'
- name: Build web app
run: npm run build
working-directory: webclients/svelte
if: matrix.features == 'web'
- name: Create dummy web artifacts
run: mkdir -p webclients/svelte/build
if: matrix.features != 'web'
- name: Build with cargo
run: cargo build --release --target=${{ matrix.rust_target_arch }} ${{ matrix.features && '--features' }} ${{ matrix.features }} --no-default-features
if: matrix.cross == false
- name: Build with cross
run: cross build --release --target=${{ matrix.rust_target_arch }} ${{ matrix.features && '--features' }} ${{ matrix.features }} --no-default-features
if: matrix.cross == true
- name: Run app with --build-info
run: cargo run --release --target=${{ matrix.rust_target_arch }} ${{ matrix.features && '--features' }} ${{ matrix.features }} --no-default-features -- --build-info
if: matrix.cross == false
- name: Create staging archive
id: create_staging_archive
uses: ./.github/actions/create_archive
with:
rust_target_arch: ${{ matrix.rust_target_arch }}
archive_suffix: "-${{ github.run_id }}"
- name: Upload archive
uses: actions/upload-artifact@master
with:
name: ${{ env.ARTIFACT_NAME }}-${{ env.RELEASE_VERSION }}-${{ matrix.rust_target_arch }}-feat-${{ matrix.build }}-${{ github.run_id }}.tar.gz
path: ${{ steps.create_staging_archive.outputs.archive_name }}