forked from wasmCloud/wasmCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
1080 lines (983 loc) · 39.1 KB
/
Copy pathwasmcloud.yml
File metadata and controls
1080 lines (983 loc) · 39.1 KB
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: wasmcloud
on:
pull_request:
merge_group:
workflow_dispatch:
inputs:
crate:
type: choice
description: crate to smart-release
options:
- wascap
- wash
- wasmcloud
- wasmcloud-component
- wasmcloud-control-interface
- wasmcloud-core
- wasmcloud-host
- wasmcloud-provider-sdk
- wasmcloud-runtime
- wasmcloud-secrets-client
- wasmcloud-secrets-types
- wasmcloud-test-util
- wasmcloud-tracing
do-release:
type: boolean
description: Leave unchecked to create a pull request with changes for verification, then check to create a release directly with changes
additional-args:
type: string
description: Advanced; Additional arguments to pass to `smart-release`
push:
branches:
- main
tags:
- 'component-v[0-9].[0-9]+.[0-9]+'
- 'component-v[0-9].[0-9]+.[0-9]+-*'
- 'control-interface-v[0-9].[0-9]+.[0-9]+'
- 'control-interface-v[0-9].[0-9]+.[0-9]+-*'
- 'core-v[0-9].[0-9]+.[0-9]+'
- 'core-v[0-9].[0-9]+.[0-9]+-*'
- 'host-v[0-9].[0-9]+.[0-9]+'
- 'host-v[0-9].[0-9]+.[0-9]+-*'
- 'opentelemetry-nats-v[0-9].[0-9]+.[0-9]+'
- 'opentelemetry-nats-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-archive-v[0-9].[0-9]+.[0-9]+'
- 'provider-archive-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-blobstore-azure-v[0-9].[0-9]+.[0-9]+'
- 'provider-blobstore-azure-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-blobstore-fs-v[0-9].[0-9]+.[0-9]+'
- 'provider-blobstore-fs-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-blobstore-nats-v[0-9].[0-9]+.[0-9]+'
- 'provider-blobstore-nats-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-blobstore-s3-v[0-9].[0-9]+.[0-9]+'
- 'provider-blobstore-s3-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-http-client-v[0-9].[0-9]+.[0-9]+'
- 'provider-http-client-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-http-server-v[0-9].[0-9]+.[0-9]+'
- 'provider-http-server-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-keyvalue-nats-v[0-9].[0-9]+.[0-9]+'
- 'provider-keyvalue-nats-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-keyvalue-redis-v[0-9].[0-9]+.[0-9]+'
- 'provider-keyvalue-redis-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-keyvalue-vault-v[0-9].[0-9]+.[0-9]+'
- 'provider-keyvalue-vault-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-messaging-kafka-v[0-9].[0-9]+.[0-9]+'
- 'provider-messaging-kafka-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-messaging-nats-v[0-9].[0-9]+.[0-9]+'
- 'provider-messaging-nats-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-sdk-v[0-9].[0-9]+.[0-9]+'
- 'provider-sdk-v[0-9].[0-9]+.[0-9]+-*'
- 'provider-sqldb-postgres-v[0-9].[0-9]+.[0-9]+'
- 'provider-sqldb-postgres-v[0-9].[0-9]+.[0-9]+-*'
- 'runtime-v[0-9].[0-9]+.[0-9]+'
- 'runtime-v[0-9].[0-9]+.[0-9]+-*'
- 'secrets-client-v[0-9].[0-9]+.[0-9]+'
- 'secrets-client-v[0-9].[0-9]+.[0-9]+-*'
- 'secrets-types-v[0-9].[0-9]+.[0-9]+'
- 'secrets-types-v[0-9].[0-9]+.[0-9]+-*'
- 'test-util-v[0-9].[0-9]+.[0-9]+'
- 'test-util-v[0-9].[0-9]+.[0-9]+-*'
- 'tracing-v[0-9].[0-9]+.[0-9]+'
- 'tracing-v[0-9].[0-9]+.[0-9]+-*'
- 'v[0-9].[0-9]+.[0-9]+'
- 'v[0-9].[0-9]+.[0-9]+-*'
- 'wascap-v[0-9].[0-9]+.[0-9]+'
- 'wascap-v[0-9].[0-9]+.[0-9]+-*'
- 'wash-v[0-9].[0-9]+.[0-9]+'
- 'wash-v[0-9].[0-9]+.[0-9]+-*'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
meta:
runs-on: ubuntu-latest
outputs:
wasmcloud_modified: ${{ steps.changes.outputs.wasmcloud }}
providers_modified: ${{ steps.changes.outputs.providers }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
# Consider wasmCloud changed if any Rust file other than
# capability providers or wash change
#
# Somewhat naive assumption that providers will be under `crates/provider-<interface>-<vendor>`
# as that is our naming convention for providers.
filters: |
wasmcloud:
- './.github/actions/build-nix/action.yml'
- './.github/actions/install-nix/action.yml'
- './.github/workflows/wasmcloud.yml'
- './.github/workflows/oci.yml'
- './.config/nextest.toml'
- 'nix/images/default.nix'
- 'flake.lock'
- 'flake.nix'
- 'Cargo.lock'
- 'Cargo.toml'
- 'rust-toolchain.toml'
- 'crates/!(wash|provider-*)/**/*.{rs,toml,wit}'
- 'src/**/*.{rs,toml,wit}'
- 'tests/**/*.{rs,toml,wit}'
- 'wit/**/*.wit'
providers:
- './.github/actions/build-nix/action.yml'
- './.github/actions/install-nix/action.yml'
- './.github/workflows/provider.yml'
- './.github/workflows/wasmcloud.yml'
- 'Cargo.lock'
- 'Cargo.toml'
- 'crates/provider-*/*.{rs,toml,wit}'
- 'flake.lock'
- 'flake.nix'
- 'rust-toolchain.toml'
build-wash-bin:
needs: [meta]
if: ${{ needs.meta.outputs.wasmcloud_modified == 'true' || startsWith(github.ref, 'refs/tags/wash-v') || startswith(github.ref, 'refs/tags/provider-') }}
strategy:
matrix:
config:
- target: aarch64-unknown-linux-musl
test-bin: |
nix profile install --fallback --inputs-from . 'nixpkgs-unstable#qemu'
qemu-aarch64 ./result/bin/wash --version
test-oci: docker load < ./result
- target: aarch64-apple-darwin
test-bin: |
file ./result/bin/wash
test-oci: docker load < ./result
- target: aarch64-linux-android
test-bin: |
file ./result/bin/wash
test-oci: docker load < ./result
- target: riscv64gc-unknown-linux-gnu-fhs
test-bin: |
nix build --fallback -L '.#wash-riscv64gc-unknown-linux-gnu'
nix shell --fallback --inputs-from . 'nixpkgs-unstable#qemu' -c qemu-riscv64 ./result/bin/wash --version
- target: x86_64-apple-darwin
test-bin: |
file ./result/bin/wash
test-oci: docker load < ./result
# TODO: Build for GNU once https://github.com/rust-lang/rust/issues/92212 is resolved
#- target: x86_64-pc-windows-gnu
# test-bin: |
# nix profile install --fallback --inputs-from . 'nixpkgs-unstable#wine64'
# wine64 ./result/bin/wash.exe --version
# test-oci: docker load < ./result
- target: x86_64-unknown-linux-musl
test-bin: |
./result/bin/wash --version
test-oci: |
docker load < ./result
docker run --rm wash:$(nix eval --raw .#wash-x86_64-unknown-linux-musl-oci.imageTag) wash --version
name: wash-${{ matrix.config.target }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/install-nix
# need to run condition inside job steps so that job will pass if all steps are skipped
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpull_requestpull_request_targetbranchesbranches-ignore
with:
cachixAuthToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: ./.github/actions/build-nix
with:
package: wash-${{ matrix.config.target }}
- run: ${{ matrix.config.test-bin }}
- uses: ./.github/actions/build-nix
if: ${{ !endsWith(matrix.config.target, 'fhs') }}
with:
package: wash-${{ matrix.config.target }}-oci
- run: ${{ matrix.config.test-oci }}
if: ${{ !endsWith(matrix.config.target, 'fhs') }}
build-wasmcloud-bin:
needs: [meta]
if: ${{ needs.meta.outputs.wasmcloud_modified == 'true' || startsWith(github.ref, 'refs/tags/v') }}
strategy:
matrix:
config:
- target: aarch64-unknown-linux-musl
test-bin: |
nix profile install --fallback --inputs-from . 'nixpkgs-unstable#qemu'
qemu-aarch64 ./result/bin/wasmcloud --version
- target: aarch64-apple-darwin
test-bin: |
file ./result/bin/wasmcloud
- target: aarch64-linux-android
test-bin: |
file ./result/bin/wasmcloud
- target: riscv64gc-unknown-linux-gnu-fhs
test-bin: |
nix build --fallback -L '.#wasmcloud-riscv64gc-unknown-linux-gnu'
nix shell --fallback --inputs-from . 'nixpkgs-unstable#qemu' -c qemu-riscv64 ./result/bin/wasmcloud --version
- target: x86_64-apple-darwin
test-bin: |
file ./result/bin/wasmcloud
- target: x86_64-pc-windows-gnu
test-bin: |
nix profile install --fallback --inputs-from . 'nixpkgs-unstable#wine64'
wine64 ./result/bin/wasmcloud.exe --version
- target: x86_64-unknown-linux-musl
test-bin: |
./result/bin/wasmcloud --version
name: wasmcloud-${{ matrix.config.target }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/install-nix
# need to run condition inside job steps so that job will pass if all steps are skipped
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpull_requestpull_request_targetbranchesbranches-ignore
with:
cachixAuthToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: ./.github/actions/build-nix
with:
package: wasmcloud-${{ matrix.config.target }}
- run: ${{ matrix.config.test-bin }}
build-provider-bin:
needs: [meta]
if: ${{ needs.meta.outputs.providers_modified == 'true' || startswith(github.ref, 'refs/tags/provider-') }}
strategy:
matrix:
name:
- blobstore-azure
- blobstore-fs
- blobstore-nats
- blobstore-s3
- keyvalue-nats
- keyvalue-redis
- keyvalue-vault
- http-client
- http-server
- messaging-kafka
- messaging-nats
- sqldb-postgres
target:
- aarch64-apple-darwin
- aarch64-unknown-linux-musl
- x86_64-apple-darwin
- x86_64-pc-windows-gnu
- x86_64-unknown-linux-musl
name: ${{ matrix.name }}-provider-${{ matrix.target }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/install-nix
# need to run condition inside job steps so that job will pass if all steps are skipped
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpull_requestpull_request_targetbranchesbranches-ignore
with:
cachixAuthToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: ./.github/actions/build-nix
with:
package: ${{ matrix.name }}-provider-${{ matrix.target }}
build-wash-windows:
if: ${{ startswith(github.ref, 'refs/tags/wash-v') || github.ref == 'refs/heads/main'}}
name: wash-x86_64-pc-windows-msvc
runs-on: windows-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- run: rustup show
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0
with:
shared-key: windows-latest-8-cores-shared-cache
if: ${{ !startswith(github.ref, 'refs/tags/') }}
- run: cargo build --release -p wash --bin wash
- run: mkdir "artifact/bin"
- run: move "target/release/wash.exe" "artifact/bin/wash.exe"
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
with:
name: wash-x86_64-pc-windows-msvc
path: artifact
build-wash-lipo:
name: wash-universal-darwin
needs: build-wash-bin
runs-on: macos-15
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wash-aarch64-apple-darwin
path: aarch64
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wash-x86_64-apple-darwin
path: x86_64
- run: mkdir -p ./artifact/bin
- run: lipo -create ./aarch64/bin/wash ./x86_64/bin/wash -output ./artifact/bin/wash
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
with:
name: wash-universal-darwin
path: artifact
build-wasmcloud-lipo:
name: wasmcloud-universal-darwin
needs: build-wasmcloud-bin
runs-on: macos-15
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wasmcloud-aarch64-apple-darwin
path: aarch64
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wasmcloud-x86_64-apple-darwin
path: x86_64
- run: mkdir -p ./artifact/bin
- run: lipo -create ./aarch64/bin/wasmcloud ./x86_64/bin/wasmcloud -output ./artifact/bin/wasmcloud
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
with:
name: wasmcloud-universal-darwin
path: artifact
test-wash-linux-aarch64:
runs-on: ubuntu-24.04-arm
needs: build-wash-bin
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wash-aarch64-unknown-linux-musl
- run: chmod +x ./bin/wash
- run: ./bin/wash --version
test-wash-linux-aarch64-oci:
runs-on: ubuntu-24.04-arm
needs: build-wash-bin
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/install-nix
with:
cachixAuthToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wash-aarch64-unknown-linux-musl-oci
- run: docker load < ./wash-aarch64-unknown-linux-musl-oci
- run: docker run --rm wash:$(nix eval --raw .#wash-aarch64-unknown-linux-musl-oci.imageTag) wash --version
test-wash-linux-x86_64:
runs-on: ubuntu-24.04
needs: build-wash-bin
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wash-x86_64-unknown-linux-musl
- run: chmod +x ./bin/wash
- run: ./bin/wash --version
test-wash-macos-aarch64:
runs-on: macos-15
needs:
- build-wash-bin
- build-wash-lipo
strategy:
matrix:
artifact:
- wash-aarch64-apple-darwin
- wash-universal-darwin
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: ${{ matrix.artifact }}
- run: chmod +x ./bin/wash
- run: ./bin/wash --version
- run: codesign --verify ./bin/wash
test-wash-macos-x86_64:
runs-on: macos-13
needs:
- build-wash-bin
- build-wash-lipo
strategy:
matrix:
artifact:
- wash-x86_64-apple-darwin
- wash-universal-darwin
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: ${{ matrix.artifact }}
- run: chmod +x ./bin/wash
- run: ./bin/wash --version
- run: codesign --verify ./bin/wash
test-wash-windows-x86_64:
runs-on: windows-latest
needs: build-wash-windows
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wash-x86_64-pc-windows-msvc
- run: .\bin\wash.exe --version
test-wasmcloud-linux-aarch64:
runs-on: ubuntu-24.04-arm
needs: build-wasmcloud-bin
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wasmcloud-aarch64-unknown-linux-musl
- run: chmod +x ./bin/wasmcloud
- run: ./bin/wasmcloud --version
test-wasmcloud-linux-x86_64:
runs-on: ubuntu-24.04
needs: build-wasmcloud-bin
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wasmcloud-x86_64-unknown-linux-musl
- run: chmod +x ./bin/wasmcloud
- run: ./bin/wasmcloud --version
test-wasmcloud-macos-aarch64:
runs-on: macos-15
needs:
- build-wasmcloud-bin
- build-wasmcloud-lipo
strategy:
matrix:
artifact:
- wasmcloud-aarch64-apple-darwin
- wasmcloud-universal-darwin
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: ${{ matrix.artifact }}
- run: chmod +x ./bin/wasmcloud
- run: ./bin/wasmcloud --version
- run: codesign --verify ./bin/wasmcloud
test-wasmcloud-macos-x86_64:
runs-on: macos-13
needs:
- build-wasmcloud-bin
- build-wasmcloud-lipo
strategy:
matrix:
artifact:
- wasmcloud-x86_64-apple-darwin
- wasmcloud-universal-darwin
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: ${{ matrix.artifact }}
- run: chmod +x ./bin/wasmcloud
- run: ./bin/wasmcloud --version
- run: codesign --verify ./bin/wasmcloud
test-wasmcloud-windows-x86_64:
runs-on: windows-latest
needs: build-wasmcloud-bin
steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wasmcloud-x86_64-pc-windows-gnu
- run: .\bin\wasmcloud.exe --version
cargo-nextest:
needs: [meta]
if: ${{ needs.meta.outputs.wasmcloud_modified == 'true' || needs.meta.outputs.providers_modified == 'true' || startsWith(github.ref, 'refs/tags/') }}
name: cargo nextest
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/install-nix
with:
cachixAuthToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809
with:
path: ${{ runner.temp }}/nix-store
key: wasmcloud-cargo-doc-${{ github.sha }}
restore-keys: |
wasmcloud-cargo-doc-
wasmcloud-x86_64_unknown-linux-musl-${{ github.sha }}
wasmcloud-x86_64_unknown-linux-musl-
wash-x86_64_unknown-linux-musl-
wasmcloud-
wash-
- run: nix copy --no-check-sigs --all --from "file://${{ runner.temp }}/nix-store"
continue-on-error: true
- run: rm -rf "${{ runner.temp }}/nix-store"
- run: nix build --fallback -L .#checks.x86_64-linux.nextest
cargo:
needs: [meta]
if: ${{ needs.meta.outputs.wasmcloud_modified == 'true' || needs.meta.outputs.providers_modified == 'true' || startsWith(github.ref, 'refs/tags/') }}
strategy:
matrix:
check:
- audit
- fmt
- clippy
- doctest
name: cargo ${{ matrix.check }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/install-nix
with:
cachixAuthToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809
with:
path: ${{ runner.temp }}/nix-store
key: wasmcloud-cargo-doc-${{ github.sha }}
restore-keys: |
wasmcloud-cargo-doc-
wasmcloud-x86_64_unknown-linux-musl-${{ github.sha }}
wasmcloud-x86_64_unknown-linux-musl-
wash-x86_64_unknown-linux-musl-
wasmcloud-
wash-
- run: nix copy --no-check-sigs --all --from "file://${{ runner.temp }}/nix-store"
continue-on-error: true
- run: rm -rf "${{ runner.temp }}/nix-store"
- run: nix build --fallback -L .#checks.x86_64-linux.${{ matrix.check }}
build-doc:
needs: [meta]
if: ${{ needs.meta.outputs.wasmcloud_modified == 'true' || startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/install-nix
with:
cachixAuthToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809
id: cache
with:
path: ${{ runner.temp }}/nix-store
key: wasmcloud-cargo-doc-${{ github.sha }}
restore-keys: |
wasmcloud-cargo-doc-
wasmcloud-x86_64_unknown-linux-musl-${{ github.sha }}
wasmcloud-x86_64_unknown-linux-musl-
wash-x86_64_unknown-linux-musl-
wasmcloud-
wash-
- run: nix copy --no-check-sigs --all --from "file://${{ runner.temp }}/nix-store"
continue-on-error: true
- run: rm -rf "${{ runner.temp }}/nix-store"
- run: nix build --fallback -L .#checks.x86_64-linux.doc
- run: cp --no-preserve=mode -R ./result/share/doc ./doc
- run: rm -f doc/.lock
- name: Create `.nojekyll`
run: touch doc/.nojekyll
- name: Write `index.html`
run: |
cat <<EOF > doc/index.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>Redirecting to wasmcloud_host/index.html</title>
<meta http-equiv="refresh" content="0; URL=wasmcloud_host/index.html">
<link rel="canonical" href="https://${{ github.repository_owner }}.github.io/wasmCloud/wasmcloud_host/index.html">
EOF
- uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa
with:
path: doc
- run: nix copy --to "file://${{ runner.temp }}/nix-store" .#checks.x86_64-linux.doc
if: steps.cache.outputs.cache-hit != 'true'
providers:
if: ${{ needs.meta.outputs.providers_modified == 'true' || startswith(github.ref, 'refs/tags/provider-') }}
strategy:
matrix:
include:
- name: blobstore-azure
subject: BLOBSTORE_AZURE_SUBJECT
embed_wit: true
- name: blobstore-fs
subject: BLOBSTORE_FS_SUBJECT
embed_wit: true
- name: blobstore-nats
subject: BLOBSTORE_NATS_SUBJECT
embed_wit: true
- name: blobstore-s3
subject: BLOBSTORE_S3_SUBJECT
embed_wit: true
- name: keyvalue-nats
subject: KEYVALUE_NATS_SUBJECT
embed_wit: true
- name: keyvalue-redis
subject: KEYVALUE_REDIS_SUBJECT
embed_wit: true
- name: keyvalue-vault
subject: KEYVALUE_VAULT_SUBJECT
embed_wit: true
- name: http-client
subject: HTTP_CLIENT_SUBJECT
embed_wit: false
- name: http-server
subject: HTTP_SERVER_SUBJECT
embed_wit: false
- name: messaging-kafka
subject: MESSAGING_KAFKA_SUBJECT
embed_wit: true
- name: messaging-nats
subject: MESSAGING_NATS_SUBJECT
embed_wit: true
- name: sqldb-postgres
subject: SQLDB_POSTGRES_SUBJECT
embed_wit: true
needs:
- meta
- build-wash-bin
- build-provider-bin
- test-wash-linux-x86_64
permissions:
contents: read
packages: write
uses: ./.github/workflows/provider.yml
with:
name: ${{ matrix.name }}
embed_wit: ${{ matrix.embed_wit }}
secrets:
issuer: ${{ secrets.WASMCLOUD_ACCOUNT_OFFICIAL }}
subject: ${{ secrets[matrix.subject] }}
deploy-doc:
runs-on: ubuntu-24.04
needs: build-doc
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e
id: deployment
oci-wash:
needs:
- build-wash-bin
- test-wash-linux-aarch64
- test-wash-linux-aarch64-oci
- test-wash-linux-x86_64
uses: ./.github/workflows/oci.yml
permissions:
contents: read
packages: write
with:
bin: wash
prefix: wash-
secrets:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
DOCKERHUB_PUSH_USER: ${{ secrets.DOCKERHUB_PUSH_USER }}
DOCKERHUB_PUSH_PASSWORD: ${{ secrets.DOCKERHUB_PUSH_PASSWORD }}
release-wasmcloud:
if: startsWith(github.ref, 'refs/tags/v')
needs:
- build-doc
- build-wasmcloud-bin
- build-wasmcloud-lipo
- cargo
- cargo-nextest
- test-wasmcloud-linux-aarch64
- test-wasmcloud-linux-x86_64
- test-wasmcloud-macos-aarch64
- test-wasmcloud-macos-x86_64
- test-wasmcloud-windows-x86_64
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
path: artifacts
pattern: wasmcloud-*
- run: |
for dir in ./artifacts/wasmcloud-*; do
target=${dir#./artifacts/wasmcloud-}
for bin_path in $(find ${dir}/bin -type f); do
chmod +x ${bin_path}
bin=$(basename ${bin_path})
case "$bin" in
*.exe)
bin="${bin%.exe}"
mkdir -p ./${bin}
mv ${bin_path} ./${bin}/${bin}-${target}.exe
;;
*)
mkdir -p ./${bin}
mv ${bin_path} ./${bin}/${bin}-${target%-fhs}
;;
esac
done
done
- uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
with:
draft: true
prerelease: true
generate_release_notes: true
files: ./wasmcloud/*
release-wash-cli:
if: startsWith(github.ref, 'refs/tags/wash-v')
needs:
- build-doc
- build-wash-bin
- build-wash-lipo
- cargo
- cargo-nextest
- oci-wash
- test-wash-linux-aarch64
- test-wash-linux-aarch64-oci
- test-wash-linux-x86_64
- test-wash-macos-aarch64
- test-wash-macos-x86_64
- test-wash-windows-x86_64
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
path: artifacts
pattern: wash-*
- run: |
for dir in ./artifacts/wash-*; do
target=${dir#./artifacts/wash-}
for bin_path in $(find ${dir}/bin -type f); do
chmod +x ${bin_path}
bin=$(basename ${bin_path})
case "$bin" in
*.exe)
bin="${bin%.exe}"
mkdir -p ./${bin}
mv ${bin_path} ./${bin}/${bin}-${target}.exe
;;
*)
mkdir -p ./${bin}
mv ${bin_path} ./${bin}/${bin}-${target%-fhs}
;;
esac
done
done
- uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
if: startsWith(github.ref, 'refs/tags/wash-v')
with:
draft: true
prerelease: true
generate_release_notes: true
files: ./wash/*
- name: Extract version
if: startsWith(github.ref, 'refs/tags/wash-v')
run: |
VERSION=$(echo "${GITHUB_REF##*/}" | sed -e 's/wash-v//')
echo "wash_version=$VERSION" >> $GITHUB_ENV
- name: Release homebrew
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0
if: startsWith(github.ref, 'refs/tags/wash-v')
with:
token: ${{ secrets.HOMEBREW_CHOCOLATEY_DISPATCH_TOKEN }}
repository: wasmCloud/homebrew-wasmcloud
event-type: brew-formula-update
client-payload: |
{"tag_prefix": "wash", "tag_version": "${{ env.wash_version }}"}
- name: Release chocolatey
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0
if: startsWith(github.ref, 'refs/tags/wash-v')
with:
token: ${{ secrets.HOMEBREW_CHOCOLATEY_DISPATCH_TOKEN }}
repository: wasmCloud/chocolatey-wash
event-type: choco-formula-update
client-payload: |
{"wash_version": "${{ env.wash_version }}"}
nfpm:
if: startsWith(github.ref, 'refs/tags/wash-v')
env:
REF: ${{ github.ref }}
PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_API_TOKEN }}
needs:
- cargo
- cargo-nextest
- build-wash-bin
- test-wash-linux-x86_64
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: ./.github/actions/install-nix
with:
cachixAuthToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Install NFPM
run: nix profile install -L --inputs-from . 'nixpkgs-unstable#nfpm'
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wash-aarch64-unknown-linux-musl
path: ./crates/wash/aarch64
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
with:
name: wash-x86_64-unknown-linux-musl
path: ./crates/wash/x86_64
- name: Make wash executable
working-directory: ./crates/wash
run: |
chmod +x ./aarch64/bin/wash
chmod +x ./x86_64/bin/wash
- name: Build `deb` and `rpm`
working-directory: ./crates/wash
run: |
export VERSION=$(echo $REF| cut -d- -f3 | tr -d "v")
nfpm pkg --packager deb -f build/nfpm.amd64.yaml
nfpm pkg --packager deb -f build/nfpm.arm64.yaml
nfpm pkg --packager rpm -f build/nfpm.amd64.yaml
nfpm pkg --packager rpm -f build/nfpm.arm64.yaml
- name: Push `deb`
working-directory: ./crates/wash
run: |
debs=(35 203 206 207 210 215 219 220 221 233 235 237 261 266 278 284)
for distro_version in "${debs[@]}"; do
curl -F "package[distro_version_id]=${distro_version}" -F "package[package_file]=@$(ls wash_*_amd64.deb)" https://$PACKAGECLOUD_TOKEN:@packagecloud.io/api/v1/repos/wasmcloud/core/packages.json;
curl -F "package[distro_version_id]=${distro_version}" -F "package[package_file]=@$(ls wash_*_arm64.deb)" https://$PACKAGECLOUD_TOKEN:@packagecloud.io/api/v1/repos/wasmcloud/core/packages.json;
done
- name: Push `rpm`
working-directory: ./crates/wash
run: |
rpms=(194 204 209 216 226 231 236 239 240 244 260 273 279 283 302)
for distro_version in "${rpms[@]}"; do
curl -F "package[distro_version_id]=${distro_version}" -F "package[package_file]=@$(ls wash-*.aarch64.rpm)" https://$PACKAGECLOUD_TOKEN:@packagecloud.io/api/v1/repos/wasmcloud/core/packages.json;
curl -F "package[distro_version_id]=${distro_version}" -F "package[package_file]=@$(ls wash-*.x86_64.rpm)" https://$PACKAGECLOUD_TOKEN:@packagecloud.io/api/v1/repos/wasmcloud/core/packages.json;
done
crates:
strategy:
matrix:
include:
- crate: component
workspace-dependencies: true
- crate: control-interface
workspace-dependencies: true
- crate: core
workspace-dependencies: true
- crate: host
workspace-dependencies: true
- crate: opentelemetry-nats
- crate: provider-archive
workspace-dependencies: true
- crate: provider-http-server
workspace-dependencies: true
- crate: provider-messaging-nats
workspace-dependencies: true
- crate: provider-sdk
workspace-dependencies: true
- crate: runtime
workspace-dependencies: true
- crate: test-util
workspace-dependencies: true
- crate: tracing
workspace-dependencies: true
- crate: secrets-types
workspace-dependencies: true
- crate: secrets-client
workspace-dependencies: true
- crate: wascap
- crate: wash
workspace-dependencies: true
name: publish ${{ matrix.crate }} to crates.io
needs: cargo
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Extract tag context
id: ctx
run: |
version=${GITHUB_REF_NAME#${{ matrix.crate }}-v}
echo "version is ${version}"
if [[ $version == *"-"* ]]; then
echo "version ${version} is a pre-release"
echo "prerelease=true" >> "$GITHUB_OUTPUT"
fi
- name: dry-run publish ${{ matrix.crate }} to crates.io
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
continue-on-error: ${{ matrix.workspace-dependencies }} # publish may fail due to workspace crates not being published yet
run: cargo publish --dry-run
working-directory: ./crates/${{ matrix.crate }}
- name: publish ${{ matrix.crate }} to crates.io
if: startsWith(github.ref, format('refs/tags/{0}-v', matrix.crate))
continue-on-error: ${{ github.repository_owner != 'wasmCloud' }}
run: cargo publish --token ${{ secrets.CRATES_PUBLISH_TOKEN }}
working-directory: ./crates/${{ matrix.crate }}
smart-release:
if: github.event_name == 'workflow_dispatch'
runs-on: ubuntu-24.04
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
fetch-tags: true
- name: Install cmake for smart-release
run: sudo apt update && sudo apt install cmake -y
- run: rustup show
- name: install smart-release
env:
RUSTFLAGS: ''
# NOTE(brooksmtownsend): Installing from my fork as updating workspace dependencies is not yet supported in the mainline
# PR to follow: https://github.com/Byron/cargo-smart-release/pull/17
run: cargo install cargo-smart-release --git https://github.com/brooksmtownsend/cargo-smart-release --branch feat/update-workspace-dependencies
- name: dry run release
if: ${{ !inputs.do-release }}
run: |
git config --global user.email "automation@wasmcloud.com"