-
Notifications
You must be signed in to change notification settings - Fork 26
1159 lines (1124 loc) · 42.1 KB
/
bencher.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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: Bencher
on:
workflow_dispatch:
push:
branches: [main, cloud, devel]
tags: [v**]
pull_request:
branches: [main, cloud, devel]
env:
# General
CARGO_TERM_COLOR: always
MOLD_VERSION: 2.34.1
GITHUB_REGISTRY: ghcr.io
DOCKER_HUB_ORGANIZATION: bencherdev
# API
API_DOCKER_IMAGE: bencher-api
LITESTREAM_VERSION: 0.3.13
LITESTREAM_ARCH: amd64
FLY_REGISTRY: registry.fly.io
# CLI
CLI_BIN_NAME: bencher
ZIG_VERSION: 0.13.0
ZIG_BUILD_VERSION: 0.19.3
# Use minimum supported glibc version for Rust Tier 1
# https://doc.rust-lang.org/nightly/rustc/platform-support.html#tier-1-with-host-tools
GLIBC_VERSION: 2.17
# WASM
WASM_BENCHER_VALID: bencher-valid-pkg
# Console
CONSOLE_DOCKER_IMAGE: bencher-console
# Dev Container
DEV_CONTAINER_DOCKER_IMAGE: bencher-dev-container
# Cache
CACHE_NAME: ${{ ((github.ref == 'refs/heads/main' || github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel' || startsWith(github.ref, 'refs/tags/')) && github.ref_name) || (github.event_name == 'pull_request' && github.event.number) }}
jobs:
# Bencher CLI GitHub Action
build_github_action:
name: Build GitHub Action
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Bencher CLI GitHub Action Dependencies
working-directory: ./services/action
run: npm install --include=dev
- name: Build Bencher CLI GitHub Action
working-directory: ./services/action
run: npm run build
- name: Check for changes
continue-on-error: ${{ !startsWith(github.ref, 'refs/tags/') }}
run: git diff --exit-code
test_cli_install:
name: Test CLI Install
strategy:
fail-fast: false
matrix:
include:
# Linux
- os: ubuntu-22.04
source: action-main
- os: ubuntu-22.04
source: action-devel
- os: ubuntu-22.04
source: script-cloud
- os: ubuntu-22.04
source: script-gen
- os: ubuntu-22.04
source: script-gen-version
- os: ubuntu-22.04
source: cargo-main
- os: ubuntu-22.04
source: cargo-devel
# MacOS
- os: macos-14
source: action-main
- os: macos-14
source: action-devel
- os: macos-14
source: script-cloud
- os: macos-14
source: script-gen
- os: macos-14
source: script-gen-version
- os: macos-14
source: cargo-main
- os: macos-14
source: cargo-devel
# Windows
- os: windows-2022
source: action-main
- os: windows-2022
source: action-devel
- os: windows-2022
source: script-cloud
- os: windows-2022
source: script-gen
- os: windows-2022
source: script-gen-version
- os: windows-2022
source: cargo-main
- os: windows-2022
source: cargo-devel
runs-on: ${{ matrix.os }}
# This is expected to fail when tagging a new release
continue-on-error: ${{ startsWith(github.ref, 'refs/tags/') && ( matrix.source == 'action-devel' || matrix.source == 'cargo-devel' || matrix.source == 'cargo-main' ) }}
steps:
- uses: bencherdev/bencher@main
if: matrix.source == 'action-main'
- uses: bencherdev/bencher@devel
if: matrix.source == 'action-devel'
- name: Unix CLI Download Install Script
if: matrix.source == 'script-cloud' && matrix.os != 'windows-2022'
run: curl --proto '=https' --tlsv1.2 -sSfL https://bencher.dev/download/install-cli.sh | sh
- name: Windows CLI Download Install Script
if: matrix.source == 'script-cloud' && matrix.os == 'windows-2022'
run: irm https://bencher.dev/download/install-cli.ps1 | iex
- uses: actions/checkout@v4
if: matrix.source == 'script-gen' || matrix.source == 'script-gen-version'
- name: Unix CLI Install Script
if: matrix.source == 'script-gen' && matrix.os != 'windows-2022'
run: cat services/cli/templates/output/install-cli.sh | sh
- name: Unix CLI Install Script Version
if: matrix.source == 'script-gen-version' && matrix.os != 'windows-2022'
run: export BENCHER_VERSION=0.4.27; cat services/cli/templates/output/install-cli.sh | sh
- name: Windows CLI Install Script
if: matrix.source == 'script-gen' && matrix.os == 'windows-2022'
run: gc -Raw services/cli/templates/output/install-cli.ps1 | iex
- name: Windows CLI Install Script Version
if: matrix.source == 'script-gen-version' && matrix.os == 'windows-2022'
run: $env:BENCHER_VERSION="0.4.27"; gc -Raw services/cli/templates/output/install-cli.ps1 | iex
- name: Cargo CLI Install main
if: matrix.source == 'cargo-main'
run: cargo install --git https://github.com/bencherdev/bencher --branch main --locked bencher_cli
- name: Cargo CLI Install devel
if: matrix.source == 'cargo-devel'
run: cargo install --git https://github.com/bencherdev/bencher --branch devel --locked bencher_cli
- name: Run current Bencher CLI GitHub Action
run: bencher run --project bencher --token ${{ secrets.BENCHER_API_TOKEN }} --dry-run "bencher mock"
# Pretty Rust
cargo_fmt:
name: Cargo Format
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Add fmt
run: rustup component add rustfmt
- name: Run fmt
run: cargo fmt -- --check
cargo_clippy:
name: Cargo Clippy
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel' || startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-all-features
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Add clippy
run: rustup component add clippy
- name: Run clippy
run: cargo clippy --no-deps --all-features -- -Dwarnings
check_generated:
name: Check Generated
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Generate OpenAPI Spec
run: cargo gen-spec
- name: Check OpenAPI Spec for changes
run: git diff --exit-code
- name: Generate Unix CLI install scripts
run: cargo gen-installer sh
- name: Check Unix CLI install script for changes
run: git diff --exit-code
- name: Generate Windows CLI install scripts
run: cargo gen-installer ps1
- name: Check Windows CLI install script for changes
run: git diff --exit-code
# Cargo Test
cargo_test:
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel' || startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
name: Cargo Test
runs-on: ubuntu-22.04
env:
TEST_BILLING_KEY: ${{ secrets.TEST_BILLING_KEY }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-all-features
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: cargo test
run: RUST_BACKTRACE=1 cargo test --all-features -- --nocapture
- name: Upload Perf JPEG
uses: actions/upload-artifact@v4
with:
name: perf.jpeg
path: ./lib/bencher_plot/perf.jpeg
if-no-files-found: error
cargo_test_pr:
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
name: Cargo Test PR
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: cargo test
run: RUST_BACKTRACE=1 cargo test --all-features -- --nocapture
- name: Upload Perf JPEG
uses: actions/upload-artifact@v4
with:
name: perf.jpeg
path: ./lib/bencher_plot/perf.jpeg
if-no-files-found: error
# API Smoke Test
api_smoke_test:
name: API Smoke Test
runs-on: ubuntu-22.04
steps:
- uses: jlumbroso/free-disk-space@main
with:
large-packages: false
- uses: actions/checkout@v4
- uses: actions/cache@v4
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel' || startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-api
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Run Smoke Test
run: cargo test-api smoke ci
release_api_smoke_test:
name: Release API Smoke Test
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
- os: macos-14
- os: windows-2022
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
if: matrix.os == 'ubuntu-22.04'
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Run Smoke Test
run: cargo test-api smoke localhost
docker_api_smoke_test:
name: Docker API Smoke Test
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
# https://github.com/actions/runner-images/issues/17#issuecomment-614726536
# - os: macos-14
# https://github.com/orgs/community/discussions/25491#discussioncomment-3248089
# - os: windows-2022
runs-on: ${{ matrix.os }}
steps:
- uses: jlumbroso/free-disk-space@main
with:
large-packages: false
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
if: matrix.os == 'ubuntu-22.04'
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Run Smoke Test
run: cargo test-api smoke docker
# Cargo Check (Minus)
cargo_check_api_minus:
name: Cargo Check API (Minus)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: cargo check
working-directory: ./services/api
run: cargo check --no-default-features
cargo_check_cli_minus:
name: Cargo Check CLI (Minus)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: cargo check
working-directory: ./services/cli
run: cargo check --no-default-features
# Cargo Benchmark
cargo_bench:
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel' || startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
name: Cargo Bench
runs-on: ubuntu-22.04
# This will fail whenever Bencher Cloud is down
# or there are any breaking changes to the report format
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-cli
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Install `bencher` CLI
run: cargo install --debug --path services/cli --locked --force
- name: Dogfooding Benchmarks with Bencher
run: |
bencher run \
--host https://api.bencher.dev \
--project bencher \
--token '${{ secrets.BENCHER_API_TOKEN }}' \
--branch "$GITHUB_REF_NAME" \
--start-point "$GITHUB_BASE_REF" \
--testbed ubuntu-22.04 \
--adapter rust_criterion \
--err \
--github-actions ${{ secrets.GITHUB_TOKEN }} \
cargo bench --package bencher_adapter
# Cargo Audit
cargo_audit:
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel' || startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
name: Cargo Audit
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-audit
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- run: cargo audit
# Cargo Unused Deps
cargo_udeps:
name: Cargo Unused Deps
runs-on: ubuntu-22.04
continue-on-error: ${{ !startsWith(github.ref, 'refs/tags/') }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel' || startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-nightly
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Install nightly toolchain
run: rustup toolchain install nightly
- name: Install udeps
run: cargo install --version 0.1.50 --locked --force cargo-udeps
- name: Run API udeps
continue-on-error: true
working-directory: ./services/api
run: cargo +nightly udeps --all-targets
- name: Run CLI udeps
continue-on-error: true
working-directory: ./services/cli
run: cargo +nightly udeps --all-targets
# Pretty JS
npx_biome_format:
name: Biome Format
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Biome format Action
working-directory: ./services/action
run: |
npm install --include=dev
npx biome ci --linter-enabled false --organize-imports-enabled false .
- name: Biome format Console UI
working-directory: ./services/console
run: |
npm install --include=dev
npx biome ci --linter-enabled false --organize-imports-enabled false .
npx_biome_lint:
name: Biome Lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Biome check Action
working-directory: ./services/action
run: |
npm install --include=dev
npx biome ci --formatter-enabled false --organize-imports-enabled false .
- name: Biome check Console UI
working-directory: ./services/console
run: |
npm install --include=dev
npx biome ci --formatter-enabled false --organize-imports-enabled false .
# UI WASM
build_bencher_valid_wasm:
name: Build `bencher_valid` WASM
runs-on: ubuntu-22.04
env:
WASM_PACK_BUILD: "wasm-pack build --target web --no-default-features --features plus,wasm"
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel' || startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-wasm
- run: cargo install wasm-pack --version 0.12.1 --locked --force
- name: WASM pack `bencher_valid`
working-directory: ./lib/bencher_valid
run: |
$WASM_PACK_BUILD || \
$WASM_PACK_BUILD || \
$WASM_PACK_BUILD || \
$WASM_PACK_BUILD || \
$WASM_PACK_BUILD
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.WASM_BENCHER_VALID }}
path: ./lib/bencher_valid/pkg
if-no-files-found: error
test_bencher_valid_wasm:
name: Test `bencher_valid` WASM
runs-on: ubuntu-22.04
needs: build_bencher_valid_wasm
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel' || startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-wasm
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: cargo test `bencher_valid` WASM
working-directory: ./lib/bencher_valid
run: cargo test --no-default-features --features plus,wasm
# NPM Test
npx_vitest:
name: vitest
runs-on: ubuntu-22.04
needs: build_bencher_valid_wasm
steps:
- uses: actions/checkout@v4
- name: Download `bencher_valid` Artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.WASM_BENCHER_VALID }}
path: ./lib/bencher_valid/pkg
- name: npx vitest
working-directory: ./services/console
run: |
npm install --include=dev
npx vitest run
# API Docker
# https://docs.docker.com/build/ci/github-actions/named-contexts/#using-with-a-container-builder
# https://www.kenmuse.com/blog/implementing-docker-layer-caching-in-github-actions/
build_api_docker:
name: Build API Docker
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.GITHUB_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build API Docker Image
uses: docker/build-push-action@v5
with:
context: .
file: ./services/api/Dockerfile
tags: ${{ env.API_DOCKER_IMAGE }}
build-args: |
MOLD_VERSION=${{ env.MOLD_VERSION }}
LITESTREAM_VERSION=${{ env.LITESTREAM_VERSION }}
LITESTREAM_ARCH=${{ env.LITESTREAM_ARCH }}
cache-from: type=registry,ref=${{ env.GITHUB_REGISTRY }}/${{ github.repository_owner }}/${{ env.API_DOCKER_IMAGE }}:cache-${{ env.CACHE_NAME }}
cache-to: type=registry,ref=${{ env.GITHUB_REGISTRY }}/${{ github.repository_owner }}/${{ env.API_DOCKER_IMAGE }}:cache-${{ env.CACHE_NAME }},mode=max
load: true
push: false
- name: Save API Docker Image
run: |
docker save ${{ env.API_DOCKER_IMAGE }} \
| gzip > ${{ env.API_DOCKER_IMAGE }}.tar.gz
- name: Upload API Docker Image Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.API_DOCKER_IMAGE }}.tar.gz
path: ./${{ env.API_DOCKER_IMAGE }}.tar.gz
if-no-files-found: error
# CLI
build_cli:
name: Build CLI
strategy:
fail-fast: false
matrix:
include:
# Linux
- build: linux-x86-64
os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
- build: linux-arm-64
os: ubuntu-22.04
target: aarch64-unknown-linux-gnu
# MacOS
- build: macos-x86-64
os: macos-14
target: x86_64-apple-darwin
- build: macos-arm-64
os: macos-14
target: aarch64-apple-darwin
# Windows
- build: windows-x86-64
os: windows-2022
target: x86_64-pc-windows-msvc
- build: windows-arm-64
os: windows-2022
target: aarch64-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
# Install
- name: Install Rust target
run: rustup target add ${{ matrix.target }}
- uses: mlugg/setup-zig@v1
if: startsWith(matrix.build, 'linux')
with:
version: ${{ env.ZIG_VERSION }}
- name: Install zigbuild
if: startsWith(matrix.build, 'linux')
run: cargo install --version ${{ env.ZIG_BUILD_VERSION }} --locked --force cargo-zigbuild
# Build
- name: cargo zigbuild Linux CLI
if: startsWith(matrix.build, 'linux')
working-directory: ./services/cli
run: cargo zigbuild --profile release-small --target ${{ matrix.target }}.${{ env.GLIBC_VERSION }}
- name: cargo zigbuild macos CLI
if: startsWith(matrix.build, 'macos')
working-directory: ./services/cli
run: cargo build --profile release-small --target ${{ matrix.target }}
- name: cargo build Windows CLI
if: startsWith(matrix.build, 'windows')
working-directory: ./services/cli
run: cargo build --profile release-small --target ${{ matrix.target }}
# Rename
- name: Rename Unix CLI bin
if: (!startsWith(matrix.build, 'windows'))
run: mv ./target/${{ matrix.target }}/release-small/${{ env.CLI_BIN_NAME }} ${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}
- name: Rename Windows CLI bin
if: startsWith(matrix.build, 'windows')
run: mv ./target/${{ matrix.target }}/release-small/${{ env.CLI_BIN_NAME }}.exe ${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}.exe
# Upload
- name: Upload Unix CLI Artifact
if: (!startsWith(matrix.build, 'windows'))
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}
path: ${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}
if-no-files-found: error
- name: Upload Windows CLI Artifact
if: startsWith(matrix.build, 'windows')
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}.exe
path: ${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}.exe
if-no-files-found: error
package_cli:
name: Package CLI
strategy:
fail-fast: false
matrix:
include:
# Linux
- build: linux-x86-64
os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
arch: amd64
- build: linux-arm-64
os: ubuntu-22.04
target: aarch64-unknown-linux-gnu
arch: arm64
runs-on: ${{ matrix.os }}
needs: build_cli
env:
CLI_DEB_DIR: deb
steps:
- uses: actions/checkout@v4
- name: Download CLI Artifact
if: (!startsWith(matrix.build, 'windows'))
uses: actions/download-artifact@v4
with:
name: ${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}
- uses: rui314/setup-mold@v1
if: startsWith(matrix.build, 'linux')
with:
mold-version: ${{ env.MOLD_VERSION }}
# Debian .deb
- name: Build .deb package
if: startsWith(matrix.build, 'linux')
run: cargo gen-pkg deb --dir ${{ env.CLI_DEB_DIR }} --arch ${{ matrix.arch }} ${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}
- name: Test install .deb package
if: matrix.build == 'linux-x86-64'
run: sudo dpkg -i ${{ env.CLI_DEB_DIR }}/${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}.deb
- name: Sanity test .deb package installation
if: matrix.build == 'linux-x86-64'
run: |
bencher --version
bencher mock
man bencher
- name: Upload .deb Artifact
if: startsWith(matrix.build, 'linux')
uses: actions/upload-artifact@v4
with:
name: ${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}.deb
path: ${{ env.CLI_DEB_DIR }}/${{ env.CLI_BIN_NAME }}-${{ github.ref_name }}-${{ matrix.build }}.deb
if-no-files-found: error
build_console_docker:
name: Build Console Docker
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.GITHUB_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Console Docker Image
uses: docker/build-push-action@v5
with:
context: .
file: ./services/console/Dockerfile
tags: ${{ env.CONSOLE_DOCKER_IMAGE }}
cache-from: type=registry,ref=${{ env.GITHUB_REGISTRY }}/${{ github.repository_owner }}/${{ env.CONSOLE_DOCKER_IMAGE }}:cache-${{ env.CACHE_NAME }}
cache-to: type=registry,ref=${{ env.GITHUB_REGISTRY }}/${{ github.repository_owner }}/${{ env.CONSOLE_DOCKER_IMAGE }}:cache-${{ env.CACHE_NAME }},mode=max
load: true
push: false
- name: Save Console Docker Image
run: |
docker save ${{ env.CONSOLE_DOCKER_IMAGE }} \
| gzip > ${{ env.CONSOLE_DOCKER_IMAGE }}.tar.gz
- name: Upload Console Docker Image Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.CONSOLE_DOCKER_IMAGE }}.tar.gz
path: ./${{ env.CONSOLE_DOCKER_IMAGE }}.tar.gz
if-no-files-found: error
build_console:
if: (!startsWith(github.ref, 'refs/tags/'))
name: Build Console UI
runs-on: ubuntu-22.04
needs: build_bencher_valid_wasm
steps:
- uses: actions/checkout@v4
- name: Download `bencher_valid` Artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.WASM_BENCHER_VALID }}
path: ./lib/bencher_valid/pkg
- name: Build Console UI
working-directory: ./services/console
run: npm run netlify
- name: Test Links
continue-on-error: true
uses: lycheeverse/[email protected]
with:
args: --config ./services/console/lychee.toml ./services/console/dist
# API Fly.io
deploy_api_fly_dev:
if: github.ref == 'refs/heads/devel'
name: Deploy API to Fly.io Dev
runs-on: ubuntu-22.04
needs:
- build_api_docker
- build_console
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Download Local Artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.API_DOCKER_IMAGE }}.tar.gz
- name: Load & Tag Local Image
run: |
docker load < ${{ env.API_DOCKER_IMAGE }}.tar.gz
docker tag ${{ env.API_DOCKER_IMAGE }} ${{ env.FLY_REGISTRY }}/bencher-api-dev
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy Local API to Fly.io
working-directory: ./services/api
run: flyctl deploy --local-only --config fly/fly.dev.toml --wait-timeout 300
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-cli
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Run Smoke Test
run: cargo test-api smoke dev
deploy_api_fly_test:
if: github.ref == 'refs/heads/cloud' || github.ref == 'refs/heads/devel'
name: Deploy API to Fly.io Test
runs-on: ubuntu-22.04
needs: build_api_docker
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Download Litestream Artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.API_DOCKER_IMAGE }}.tar.gz
- name: Load & Tag Litestream Image
run: |
docker load < ${{ env.API_DOCKER_IMAGE }}.tar.gz
docker tag ${{ env.API_DOCKER_IMAGE }} ${{ env.FLY_REGISTRY }}/bencher-api-test
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy Litestream API to Fly.io Test
working-directory: ./services/api
run: flyctl deploy --local-only --config fly/fly.test.toml --wait-timeout 300
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Run Smoke Test
run: cargo test-api smoke test
backup_database:
if: github.ref == 'refs/heads/cloud'
name: Backup Database
runs-on: ubuntu-22.04
# This will fail whenever Bencher Cloud is down
continue-on-error: true
timeout-minutes: 5
needs:
# Lint
- cargo_fmt
- cargo_clippy
- npx_biome_format
- npx_biome_lint
- check_generated
# Test
- cargo_test
- api_smoke_test
- cargo_bench
- test_bencher_valid_wasm
- npx_vitest
# Build
- build_api_docker
- build_console
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-cli
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Install `bencher` CLI
run: cargo install --debug --path services/cli --locked --force
- name: Backup API Server Database
run: |
bencher server backup \
--host https://api.bencher.dev \
--token ${{ secrets.BENCHER_API_TOKEN_ADMIN }} \
--compress \
--data-store aws_s3 \
--rm
deploy_api_fly:
name: Deploy API to Fly.io Prod
runs-on: ubuntu-22.04
needs:
- deploy_api_fly_test
- backup_database
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download Litestream Artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.API_DOCKER_IMAGE }}.tar.gz
- name: Load & Tag Litestream Image
run: |
docker load < ${{ env.API_DOCKER_IMAGE }}.tar.gz
docker tag ${{ env.API_DOCKER_IMAGE }} ${{ env.FLY_REGISTRY }}/bencher-api
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy API to Fly.io Prod
working-directory: ./services/api
run: flyctl deploy --local-only --config fly/fly.toml --wait-timeout 300
- name: Rebase main on cloud
run: |
git fetch origin cloud
git checkout cloud
git pull
git fetch origin main
git checkout main
git pull
git rebase origin/cloud
git push
# UI Netlify
deploy_console_netlify_dev:
name: Deploy Console UI to Netlify Dev
runs-on: ubuntu-22.04
needs: deploy_api_fly_dev
steps:
- uses: actions/checkout@v4
- name: Download `bencher_valid` Artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.WASM_BENCHER_VALID }}
path: ./lib/bencher_valid/pkg
- name: Build Console UI
working-directory: ./services/console
run: npm run netlify
- name: Install Netlify CLI
run: npm install --save-dev [email protected]
- name: Deploy Console UI to Netlify Dev
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
DEPLOY_MESSAGE: "${{ github.event.head_commit.message }}"
run: |
npx netlify-cli \
deploy \
--alias ${GITHUB_REF#refs/*/} \
--message "$DEPLOY_MESSAGE" \
--json \
| tee netlify.json
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Run Netlify Dev Test
run: cargo test-netlify dev ${{ github.ref_name }}
deploy_console_netlify:
name: Deploy Console UI to Netlify Prod
runs-on: ubuntu-22.04
needs: deploy_api_fly
steps:
- uses: actions/checkout@v4
- name: Download `bencher_valid` Artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.WASM_BENCHER_VALID }}
path: ./lib/bencher_valid/pkg
- name: Build Console UI
working-directory: ./services/console
run: npm run netlify
- name: Install Netlify CLI
run: npm install --save-dev [email protected]
- name: Deploy Console UI to Netlify
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
DEPLOY_MESSAGE: "${{ github.event.head_commit.message }}"
run: |
npx netlify-cli \
deploy \
--prod \
--alias ${GITHUB_REF#refs/*/} \
--message "$DEPLOY_MESSAGE" \
--json \
| tee netlify.json
- uses: rui314/setup-mold@v1
with:
mold-version: ${{ env.MOLD_VERSION }}
- name: Run Netlify Test
run: cargo test-netlify prod ${{ github.ref_name }}
# Release
release_bencher:
if: startsWith(github.ref, 'refs/tags/')
name: Release Bencher
runs-on: ubuntu-22.04
needs:
# Lint
- cargo_fmt
- cargo_clippy
- npx_biome_format
- npx_biome_lint
- check_generated
# Test
- cargo_test