-
Notifications
You must be signed in to change notification settings - Fork 19
1087 lines (1069 loc) · 44.7 KB
/
release.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: Release
run-name: Cut Release ${{github.event.inputs.release-version || github.ref_name}}
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+" # ex. v1.0.0
- "v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+" # ex. v1.1.0-rc1
- "v0.0.1" # used for testing only
- "v0.0.1-rc[0-9]+" # used for testing only
workflow_dispatch:
inputs:
release-version:
description: "Release version (v#.#.#[-rc#])"
required: true
env:
NEW_RELEASE_TAG_FROM_UI: ${{github.event.inputs.release-version}}
NEW_RELEASE_TAG: ${{github.event.inputs.release-version || github.ref_name}}
RELEASE_BRANCH_NAME: release-${{github.event.inputs.release-version || github.ref_name}}
LATEST_FULL_RELEASE_TAG: _LATEST-FULL-RELEASE
TEST_RUN: ${{startsWith(github.event.inputs.release-version || github.ref_name, 'v0.0.1')}}
RUST_TOOLCHAIN: "1.70.0" # Match to /rust-toolchain.toml
jobs:
# validate-release-version:
# name: Validate Release Version
# runs-on: ubuntu-20.04
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Validate
# if: env.NEW_RELEASE_TAG_FROM_UI != ''
# shell: bash
# run: |
# version=${{env.NEW_RELEASE_TAG_FROM_UI}}
# echo "Release version entered in UI: $version"
# regex='^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(-rc[1-9]\d*)?$'
# if [[ ! $version =~ $regex ]]; then
# echo "ERROR: Entered version $version is not valid."
# echo "Please use v#.#.#[-rc#] format."
# exit 1
# fi
# create-release-branch:
# needs: validate-release-version
# name: Create Release Branch
# runs-on: ubuntu-20.04
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# token: ${{secrets.GHA_GIT_COMMIT || github.token}}
# fetch-depth: 0
# - name: Create Release Branch?
# id: create-release-branch
# run: |
# set -x
# full_branch=remotes/origin/${{env.RELEASE_BRANCH_NAME}}
# branch_hash=$(git rev-parse --verify --quiet $full_branch || echo "")
# create_branch=$([ -z $branch_hash ] && echo 'true' || echo 'false')
# echo "create_branch: $create_branch"
# echo "create=$create_branch" >> $GITHUB_OUTPUT
# - name: Create Release Branch
# if: steps.create-release-branch.outputs.create == 'true'
# run: |
# git status -s
# git checkout -b ${{env.RELEASE_BRANCH_NAME}}
# git push origin ${{env.RELEASE_BRANCH_NAME}} -u
# run-all-benchmarks:
# needs: create-release-branch
# name: Run All Benchmarks
# runs-on: [self-hosted, Linux, X64, benchmark]
# steps:
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# - name: Full Release?
# id: is-full-release
# uses: ./.github/workflows/common/is-full-release
# with:
# version-tag: ${{env.NEW_RELEASE_TAG}}
# - name: Install Required Packages
# if: steps.is-full-release.outputs.is-full-release == 'true'
# run: |
# sudo apt-get update
# sudo apt install -y protobuf-compiler libclang-dev clang cmake
# - name: Install Rust Toolchain
# if: steps.is-full-release.outputs.is-full-release == 'true'
# # Match installation steps to CI base docker image
# run: |
# curl https://sh.rustup.rs -sSf | bash -s -- -y
# echo "PATH=$HOME/.cargo/bin:$PATH" >> $GITHUB_ENV
# - name: Update Weights for All Pallets
# if: steps.is-full-release.outputs.is-full-release == 'true'
# run: |
# rustup show
# make benchmarks
# git status -s
# git diff
# - name: Commit Updated Weights
# if: steps.is-full-release.outputs.is-full-release == 'true'
# uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d
# with:
# commit_message: "Update weights for release ${{env.NEW_RELEASE_TAG}}"
# commit_user_name: Frequency CI [bot]
# commit_user_email: [email protected]
# commit_author: Frequency CI [bot] <[email protected]>
# version-code:
# needs: run-all-benchmarks
# name: Version Code
# runs-on: ubuntu-20.04
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# fetch-depth: 0
# - name: Version Code
# shell: bash
# run: |
# release_version=${{env.NEW_RELEASE_TAG}}
# make version v=${release_version:1}
# - name: Print Updated Version
# run: |
# git status
# git diff
# - name: Commit Updated Version
# id: commit-updated-version
# uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d
# with:
# commit_message: "Update versions for release ${{env.NEW_RELEASE_TAG}}"
# commit_user_name: Frequency CI [bot]
# commit_user_email: [email protected]
# commit_author: Frequency CI [bot] <[email protected]>
# - name: Update Release Version Tag
# uses: rickstaa/action-create-tag@88dbf7ff6fe2405f8e8f6c6fdfd78829bc631f83
# with:
# tag: ${{env.NEW_RELEASE_TAG}}
# force_push_tag: true
# message: "Release version tag"
# commit_sha: ${{steps.commit-updated-version.outputs.commit_hash}}
# build-binaries:
# needs: version-code
# name: Build ${{matrix.arch}} Binary for ${{matrix.network}}
# strategy:
# fail-fast: true
# matrix:
# # os: [[self-hosted, Linux, X64, build, v2], [self-hosted, Linux, ARM64, build, v2]]
# os: [[self-hosted, Linux, X64, build, v2]]
# network: [dev, local, rococo, mainnet]
# include:
# - network: dev
# spec: frequency-no-relay
# build-profile: release
# release-file-name-prefix: frequency-dev
# - network: local
# spec: frequency-rococo-local
# build-profile: release
# release-file-name-prefix: frequency-rococo-local
# - network: rococo
# spec: frequency-rococo-testnet
# build-profile: release
# release-file-name-prefix: frequency-rococo
# - network: mainnet
# spec: frequency
# build-profile: release
# release-file-name-prefix: frequency
# - os: [self-hosted, Linux, X64, build, v2]
# arch: amd64
# # - os: [self-hosted, Linux, ARM64]
# # arch: arm64
# runs-on: ${{matrix.os}}
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# - name: Set Env Vars
# run: |
# echo "BIN_DIR=target/${{matrix.build-profile}}" >> $GITHUB_ENV
# echo "BUILT_BIN_FILENAME=frequency" >> $GITHUB_ENV
# echo "RELEASE_BIN_FILENAME=${{matrix.release-file-name-prefix}}.${{matrix.arch}}" >> $GITHUB_ENV
# - name: Compile for ${{matrix.network}}
# run: |
# CARGO_INCREMENTAL=0 RUSTFLAGS="-D warnings" cargo build \
# --locked \
# --features ${{matrix.spec}} \
# --profile ${{matrix.build-profile}}
# - name: Run Sanity Checks
# run: |
# file ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}} && \
# ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}} --version
# - name: Rename Binary
# run: |
# cp -p ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}} \
# ${{env.BIN_DIR}}/${{env.RELEASE_BIN_FILENAME}}
# - name: Generate Binary Hash
# working-directory: ${{env.BIN_DIR}}
# run: sha256sum ${{env.RELEASE_BIN_FILENAME}} > ${{env.RELEASE_BIN_FILENAME}}.sha256
# - name: Import GPG key
# id: import-gpg
# uses: crazy-max/ghaction-import-gpg@82a020f1f7f605c65dd2449b392a52c3fcfef7ef
# with:
# gpg_private_key: ${{secrets.FREQUENCY_PGP_SECRET_SUBKEYS}}
# passphrase: ${{secrets.FREQUENCY_PGP_MASTER_KEY_PASSWORD}}
# fingerprint: ${{env.SIGNING_SUBKEY_FINGERPRINT}} # signing subkey
# - name: List GPG Keys
# run: gpg -k; gpg -K
# - name: Generate Binary Signature
# working-directory: ${{env.BIN_DIR}}
# run: gpg --detach-sign --armor ${{env.RELEASE_BIN_FILENAME}}
# - name: Verify Binary
# working-directory: ${{env.BIN_DIR}}
# run: gpg --verify ${{env.RELEASE_BIN_FILENAME}}.asc
# - name: Upload Artifacts
# uses: actions/upload-artifact@v3
# with:
# name: artifacts-${{github.run_id}}
# path: |
# ${{env.BIN_DIR}}/${{env.RELEASE_BIN_FILENAME}}
# ${{env.BIN_DIR}}/${{env.RELEASE_BIN_FILENAME}}.sha256
# ${{env.BIN_DIR}}/${{env.RELEASE_BIN_FILENAME}}.asc
# if-no-files-found: error
build-binaries:
name: Build ${{matrix.arch}} Binary for ${{matrix.network}}
env:
SIGNING_SUBKEY_FINGERPRINT: ${{env.SIGNING_SUBKEY_FINGERPRINT}}
strategy:
fail-fast: true
matrix:
# os: [[self-hosted, Linux, X64, build, v2], [self-hosted, Linux, ARM64, build, v2]]
os: [[self-hosted, Linux, X64, build, v2]]
network: [dev, local, rococo, mainnet]
include:
- network: dev
spec: frequency-no-relay
build-profile: release
release-file-name-prefix: frequency-dev
- network: local
spec: frequency-rococo-local
build-profile: release
release-file-name-prefix: frequency-rococo-local
- network: rococo
spec: frequency-rococo-testnet
build-profile: release
release-file-name-prefix: frequency-rococo
- network: mainnet
spec: frequency
build-profile: release
release-file-name-prefix: frequency
- os: [self-hosted, Linux, X64, build, v2]
arch: amd64
# - os: [self-hosted, Linux, ARM64]
# arch: arm64
runs-on: ${{matrix.os}}
container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Set Env Vars
run: |
echo "BIN_DIR=target/${{matrix.build-profile}}" >> $GITHUB_ENV
echo "BUILT_BIN_FILENAME=frequency" >> $GITHUB_ENV
echo "RELEASE_BIN_FILENAME=${{matrix.release-file-name-prefix}}.${{matrix.arch}}" >> $GITHUB_ENV
- name: Import GPG key
id: import-gpg
uses: crazy-max/ghaction-import-gpg@82a020f1f7f605c65dd2449b392a52c3fcfef7ef
with:
gpg_private_key: ${{secrets.FREQUENCY_PGP_SECRET_SUBKEYS}}
passphrase: ${{secrets.FREQUENCY_PGP_MASTER_KEY_PASSWORD}}
fingerprint: ${{env.SIGNING_SUBKEY_FINGERPRINT}}
- name: List GPG Keys
run: gpg -k; gpg -K
- name: Generate Binary Signature
run: |
gpg --version
gpg --local-user ${{env.SIGNING_SUBKEY_FINGERPRINT}} \
--sign \
--armor --pinentry-mode=loopback \
--passphrase="${{secrets.FREQUENCY_PGP_MASTER_KEY_PASSWORD}}" \
--detach-sig \
test.bin
# # Could not port this job to container because this creates docker-in-docker
# # situation and fails when srtool-ci container is trying to process files in
# # the mapped volume which don't exist on the host.
# # See https://github.com/LibertyDSNP/frequency/issues/1543
# build-runtimes:
# needs: version-code
# name: Build Runtime for ${{matrix.network}}
# outputs:
# runtime_filename_dev: ${{steps.set-env-vars.outputs.runtime_filename_dev}}
# runtime_filename_rococo: ${{steps.set-env-vars.outputs.runtime_filename_rococo}}
# runtime_filename_mainnet: ${{steps.set-env-vars.outputs.runtime_filename_mainnet}}
# # env:
# # HOME: /root
# strategy:
# fail-fast: true
# matrix:
# network: [dev, rococo, mainnet]
# include:
# - network: dev
# build-profile: release
# package: frequency-runtime
# runtime-dir: runtime/frequency
# built-wasm-file-name-prefix: frequency_runtime
# release-wasm-file-name-prefix: frequency-dev_runtime
# features: frequency-no-relay
# wasm-core-version: frequency-rococo
# - network: rococo
# build-profile: release
# package: frequency-runtime
# runtime-dir: runtime/frequency
# built-wasm-file-name-prefix: frequency_runtime
# release-wasm-file-name-prefix: frequency-rococo_runtime
# features: frequency-rococo-testnet
# wasm-core-version: frequency-rococo
# - network: mainnet
# build-profile: release
# package: frequency-runtime
# runtime-dir: runtime/frequency
# built-wasm-file-name-prefix: frequency_runtime
# release-wasm-file-name-prefix: frequency_runtime
# features: frequency
# wasm-core-version: frequency
# runs-on: [self-hosted, Linux, X64, build, v2]
# steps:
# - name: Install Required Packages
# run: |
# sudo apt-get update
# sudo apt install -y wget file build-essential
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# - name: Install Rust Toolchain
# # Match installation steps to CI base docker image
# run: |
# curl https://sh.rustup.rs -sSf | bash -s -- -y
# echo "PATH=$HOME/.cargo/bin:$PATH" >> $GITHUB_ENV
# - name: Extract Runtime Spec Version
# run: |
# echo "RUNTIME_SPEC_VERSION=$(awk '/spec_version:/ {match($0, /[0-9]+/); print substr($0, RSTART, RLENGTH); exit}' \
# ${{matrix.runtime-dir}}/src/lib.rs)" >> $GITHUB_ENV
# - name: Validate Extracted Version
# shell: bash
# run: |
# echo "Runtime Spec Version: ${{env.RUNTIME_SPEC_VERSION}}"
# [[ $RUNTIME_SPEC_VERSION == ?(-)+([0-9]) ]] || \
# (echo "ERROR: \"${{env.RUNTIME_SPEC_VERSION}}\" is not a valid integer" && exit 1)
# - name: Set Env Vars
# id: set-env-vars
# run: |
# echo "WASM_DIR=${{matrix.runtime-dir}}/target/srtool/${{matrix.build-profile}}/wbuild/${{matrix.package}}" >> $GITHUB_ENV
# echo "BUILT_WASM_FILENAME=${{matrix.built-wasm-file-name-prefix}}.compact.compressed.wasm" >> $GITHUB_ENV
# release_wasm_filename=${{matrix.release-wasm-file-name-prefix}}-v${{env.RUNTIME_SPEC_VERSION}}.${{env.NEW_RELEASE_TAG}}.compact.compressed.wasm
# echo "RELEASE_WASM_FILENAME=$release_wasm_filename" >> $GITHUB_ENV
# echo "runtime_filename_${{matrix.network}}=$release_wasm_filename" >> $GITHUB_OUTPUT
# - name: Install srtool-cli
# run: |
# cargo install --git https://github.com/chevdor/srtool-cli
# srtool --version
# - name: Build Deterministic WASM
# run: |
# RUST_LOG=debug SRTOOL_TAG="1.70.0" srtool build \
# --build-opts="'--features on-chain-release-build,no-metadata-docs,${{matrix.features}}'" \
# --profile=${{matrix.build-profile}} \
# --package=${{matrix.package}}
# - name: Rename WASM file
# run: |
# cp -p ./${{env.WASM_DIR}}/${{env.BUILT_WASM_FILENAME}} \
# ./${{env.WASM_DIR}}/${{env.RELEASE_WASM_FILENAME}}
# - name: Install Subwasm
# run: |
# cargo install --locked --git https://github.com/chevdor/subwasm --tag v0.19.1 --force
# subwasm --version
# - name: Test WASM file
# run: |
# subwasm info ${{env.WASM_DIR}}/${{env.RELEASE_WASM_FILENAME}}
# subwasm info ${{env.WASM_DIR}}/${{env.RELEASE_WASM_FILENAME}} | grep "Core version:.*${{matrix.wasm-core-version}}-${{env.RUNTIME_SPEC_VERSION}}" || \
# (echo "ERROR: WASM Core version didn't match ${{matrix.wasm-core-version}}-${{env.RUNTIME_SPEC_VERSION}}" && exit 1)
# - name: Upload Artifact
# uses: actions/upload-artifact@v3
# with:
# name: artifacts-${{github.run_id}}
# path: ${{env.WASM_DIR}}/${{env.RELEASE_WASM_FILENAME}}
# if-no-files-found: error
# build-rust-developer-docs:
# needs: version-code
# name: Build Rust Developer Docs
# runs-on: [self-hosted, Linux, X64, build, v2]
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# - name: Setup Pages
# uses: actions/configure-pages@v3
# - name: Build Docs
# run: |
# rustup target add wasm32-unknown-unknown --toolchain nightly-2023-07-13
# RUSTDOCFLAGS="--enable-index-page -Zunstable-options" cargo +nightly-2023-07-13 doc --no-deps --workspace --features frequency
# - name: Fix file permissions
# shell: sh
# run: |
# chmod -c -R +rX "target/doc" |
# while read line; do
# echo "::warning title=Invalid file permissions automatically fixed::$line"
# done
# - name: Upload Docs
# uses: actions/upload-pages-artifact@v1
# with:
# path: ./target/doc
# build-js-api-augment:
# needs: build-binaries
# name: Build JS API Augment
# env:
# NETWORK: local
# CHAIN_SPEC: frequency-rococo-local
# BUILD_PROFILE: release
# BIN_DIR: target/release
# RELEASE_FILENAME_PREFIX: frequency-rococo-local
# ARCH: amd64
# runs-on: ubuntu-20.04
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Set Env Vars
# run: |
# echo "BIN_DIR=target/${{env.BUILD_PROFILE}}" >> $GITHUB_ENV
# echo "RELEASE_BIN_FILENAME=${{env.RELEASE_FILENAME_PREFIX}}.${{env.ARCH}}" >> $GITHUB_ENV
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# - name: Set up NodeJs
# uses: actions/setup-node@v4
# with:
# node-version: 18
# cache: "npm"
# registry-url: "https://registry.npmjs.org"
# cache-dependency-path: js/api-augment/package-lock.json
# - name: Install
# run: npm install # DO NOT use `npm ci` as we want the latest polkadot/api possible
# working-directory: js/api-augment
# - name: Download Binaries
# id: download-binaries
# uses: actions/download-artifact@v3
# with:
# name: artifacts-${{github.run_id}}
# path: .
# - name: List Downloaded Binaries
# run: |
# download_dir=${{steps.download-binaries.outputs.download-path}}
# echo "Download dir: $download_dir"
# echo "Downloaded binaries: $(ls -l $download_dir)"
# - name: Move Binary to Target Dir
# run: |
# mkdir -p ${{env.BIN_DIR}}
# mv ${{env.RELEASE_BIN_FILENAME}} ${{env.BIN_DIR}}
# chmod 755 ${{env.BIN_DIR}}/${{env.RELEASE_BIN_FILENAME}}
# - name: Output Metadata
# run: ${{env.BIN_DIR}}/${{env.RELEASE_BIN_FILENAME}} export-metadata --chain=frequency-rococo-local --tmp ./js/api-augment/metadata.json
# - name: Build
# run: npm run build
# working-directory: js/api-augment
# - name: Upload Dist Dir
# uses: actions/upload-artifact@v3
# with:
# name: js-api-augment-${{github.run_id}}
# path: js/api-augment/dist
# if-no-files-found: error
# test-version-matches-release:
# needs: build-binaries
# name: Test Version Matches Release
# strategy:
# fail-fast: true
# matrix:
# os: [ubuntu-20.04]
# network: [mainnet]
# include:
# - network: mainnet
# spec: frequency
# build-profile: release
# release-file-name-prefix: frequency
# - os: ubuntu-20.04
# arch: amd64
# runs-on: ${{matrix.os}}
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Set Env Vars
# run: |
# echo "BIN_DIR=target/${{matrix.build-profile}}" >> $GITHUB_ENV
# echo "BUILT_BIN_FILENAME=frequency" >> $GITHUB_ENV
# echo "RELEASE_BIN_FILENAME=${{matrix.release-file-name-prefix}}.${{matrix.arch}}" >> $GITHUB_ENV
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# fetch-depth: 0
# - name: Download Binaries
# id: download-binaries
# uses: actions/download-artifact@v3
# with:
# name: artifacts-${{github.run_id}}
# path: .
# - name: List Downloaded Binaries
# run: |
# download_dir=${{steps.download-binaries.outputs.download-path}}
# echo "Download dir: $download_dir"
# echo "Downloaded binaries: $(ls -l $download_dir)"
# - name: Move Binary to Target Dir
# run: |
# mkdir -p ${{env.BIN_DIR}}
# mv ${{env.RELEASE_BIN_FILENAME}} ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}}
# chmod +x ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}}
# - name: Testing Version Match
# if: env.TEST_RUN != 'true'
# shell: bash
# run: |
# EXPECTED_VERSION="${{env.NEW_RELEASE_TAG}}+polkadot$(make version-polkadot)"
# ACTUAL_VERSION="v$(${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}} --version | cut -d " " -f 2)"
# echo "Expected: ${EXPECTED_VERSION}"
# echo " Actual: ${ACTUAL_VERSION%-*}"
# [[ ${ACTUAL_VERSION%-*} == ${EXPECTED_VERSION} ]]
# # Could not port this job to container because the reference node will be started in a
# # parallel container to the job polkadot-js-tools container and the latter will not
# # be able to connect to the former without runner supporting DinD mode first.
# # See https://github.com/LibertyDSNP/frequency/issues/1543
# compare-metadata:
# needs: build-binaries
# name: Compare Metadata
# runs-on: ubuntu-20.04
# env:
# BIN_DIR: target/release
# BIN_FILENAME: frequency.amd64
# TEST_BIN_FILENAME: frequency.amd64
# TEST_DOWNLOAD_DIR: download-test
# REF_BIN_FILENAME: frequency-ref.amd64
# REF_DOWNLOAD_DIR: download-ref
# OUTPUT_DIR: target/release
# FREQUENCY_PROCESS_NAME: frequency
# steps:
# - name: Set Env Vars
# run: |
# export NETWORK=mainnet; echo "NETWORK=$NETWORK" >> $GITHUB_ENV
# echo "OUTPUT_FILENAME=metadata-compare-$NETWORK.txt" >> $GITHUB_ENV
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# fetch-depth: 0
# - name: Get Previous Full Release Version
# id: get-previous-full-release-version
# uses: ./.github/workflows/common/get-previous-full-release-version
# with:
# full-release-version-tag: ${{env.LATEST_FULL_RELEASE_TAG}}
# - name: Fetch Reference Binary
# uses: robinraju/release-downloader@efa4cd07bd0195e6cc65e9e30c251b49ce4d3e51
# with:
# tag: ${{steps.get-previous-full-release-version.outputs.version}}
# fileName: ${{env.BIN_FILENAME}}
# out-file-path: ${{env.REF_DOWNLOAD_DIR}}
# - name: Download Test Binary
# uses: actions/download-artifact@v3
# with:
# name: artifacts-${{github.run_id}}
# path: ${{env.TEST_DOWNLOAD_DIR}}
# - name: Rename and Move Binaries
# run: |
# mkdir -p ${{env.BIN_DIR}}
# mv ${{env.REF_DOWNLOAD_DIR}}/${{env.BIN_FILENAME}} ${{env.BIN_DIR}}/${{env.REF_BIN_FILENAME}}
# mv ${{env.TEST_DOWNLOAD_DIR}}/${{env.BIN_FILENAME}} ${{env.BIN_DIR}}/${{env.TEST_BIN_FILENAME}}
# - name: Set Binary Permissions
# working-directory: ${{env.BIN_DIR}}
# run: |
# chmod 755 $TEST_BIN_FILENAME
# chmod 755 $REF_BIN_FILENAME
# - name: Docker network
# run: docker network create net-${{env.RELEASE_BRANCH_NAME}}
# - name: Start Test Node
# working-directory: ${{env.BIN_DIR}}
# run: |
# docker run -d --rm --net=net-${{env.RELEASE_BRANCH_NAME}} \
# -v `pwd`:/app \
# --name test-node \
# ubuntu:22.04 \
# /bin/sh -c "chmod +x /app/${{env.TEST_BIN_FILENAME}} && /app/${{env.TEST_BIN_FILENAME}} \
# --chain=frequency-bench \
# --rpc-external \
# --rpc-cors=all \
# --rpc-methods=Unsafe \
# --no-telemetry \
# --no-prometheus \
# --reserved-only \
# --no-hardware-benchmarks \
# --tmp \
# -- \
# --reserved-only"
# - name: Start Reference Node
# working-directory: ${{env.BIN_DIR}}
# run: |
# docker run -d --rm --net=net-${{env.RELEASE_BRANCH_NAME}} \
# -v `pwd`:/app \
# --name ref-node \
# ubuntu:22.04 \
# /bin/sh -c "chmod +x /app/${{env.REF_BIN_FILENAME}} && /app/${{env.REF_BIN_FILENAME}} \
# --chain=frequency-bench \
# --rpc-external \
# --rpc-cors=all \
# --rpc-methods=Unsafe \
# --no-telemetry \
# --no-prometheus \
# --reserved-only \
# --no-hardware-benchmarks \
# --tmp \
# -- \
# --reserved-only"
# - name: Prepare Output
# working-directory: ${{env.OUTPUT_DIR}}
# run: |
# REF_VERSION=$(./${{env.REF_BIN_FILENAME}} --version)
# BIN_VERSION=$(./${{env.TEST_BIN_FILENAME}} --version)
# echo "Metadata comparison against previous full release:" >> ${{env.OUTPUT_FILENAME}}
# echo "Date: $(date)" >> ${{env.OUTPUT_FILENAME}}
# echo "Ref. version: $REF_VERSION" >> ${{env.OUTPUT_FILENAME}}
# echo "Test version: $BIN_VERSION" >> ${{env.OUTPUT_FILENAME}}
# echo "----------------------------------------------------------------------" >> ${{env.OUTPUT_FILENAME}}
# - name: Compare Metadata
# timeout-minutes: 10
# run: |
# CMD="docker run --pull always --net=net-${{env.RELEASE_BRANCH_NAME}} jacogr/polkadot-js-tools:0.55.3 metadata ws://ref-node:9944 ws://test-node:9944"
# echo -e "Running:\n$CMD"
# $CMD >> ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}}
# sed -z -i 's/\n\n/\n/g' ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}}
# cat ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}} | egrep -n -i ''
# SUMMARY=$(./tools/ci/scripts/extrinsic-ordering-filter.sh ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}})
# echo -e $SUMMARY
# echo -e $SUMMARY >> ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}}
# - name: Show Result
# working-directory: ${{env.OUTPUT_DIR}}
# run: |
# cat ${{env.OUTPUT_FILENAME}}
# - name: Upload Artifact
# uses: actions/upload-artifact@v3
# with:
# name: artifacts-${{github.run_id}}
# path: ${{env.OUTPUT_DIR}}/${{env.OUTPUT_FILENAME}}
# if-no-files-found: error
# - name: Stop Local Nodes
# if: always()
# run: |
# echo "Attempting to kill all frequency processes..."
# docker stop ref-node || true
# docker stop test-node || true
# docker network rm net-${{env.RELEASE_BRANCH_NAME}}
# wait-for-all-builds:
# needs:
# [
# build-binaries,
# build-runtimes,
# compare-metadata,
# test-version-matches-release,
# build-rust-developer-docs,
# build-js-api-augment,
# ]
# name: Wait for All Builds to Finish
# runs-on: ubuntu-20.04
# outputs:
# runtime_filename_dev: ${{needs.build-runtimes.outputs.runtime_filename_dev}}
# runtime_filename_rococo: ${{needs.build-runtimes.outputs.runtime_filename_rococo}}
# runtime_filename_mainnet: ${{needs.build-runtimes.outputs.runtime_filename_mainnet}}
# steps:
# - name: Proceed Forward
# run: echo "All build jobs have finished, proceeding with the release"
# release-artifacts:
# needs: wait-for-all-builds
# name: Release Built Artifacts
# runs-on: ubuntu-20.04
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# fetch-depth: 0
# - name: Full Release?
# id: is-full-release
# uses: ./.github/workflows/common/is-full-release
# with:
# version-tag: ${{env.NEW_RELEASE_TAG}}
# - name: Get Previous Full Release Version
# id: get-previous-full-release-version
# uses: ./.github/workflows/common/get-previous-full-release-version
# with:
# full-release-version-tag: ${{env.LATEST_FULL_RELEASE_TAG}}
# - name: Set Env Vars
# run: |
# echo "PREVIOUS_RELEASE_TAG=${{steps.get-previous-full-release-version.outputs.version}}" >> $GITHUB_ENV
# - name: Install Tera CLI
# run: |
# cargo install --git https://github.com/chevdor/tera-cli
# echo "PATH=$HOME/.cargo/bin:$PATH" >> $GITHUB_ENV
# - name: Verify Tera CLI Install
# run: |
# which tera
# tera --version
# - name: Build Changelog
# id: build-changelog
# uses: mikepenz/release-changelog-builder-action@6fd5cc6eaf7567dbd0f9666061215bb476f012fc
# env:
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
# with:
# fromTag: ${{env.PREVIOUS_RELEASE_TAG}}
# toTag: ${{env.NEW_RELEASE_TAG}}
# configurationJson: |
# {
# "categories": [
# {
# "title": "### Major Changes|n|",
# "labels": ["change/major"]
# }
# ],
# "template": "#{{CHANGELOG}}|n||n|### Uncategorized Changes|n||n| #{{UNCATEGORIZED}}",
# "pr_template": "- #{{TITLE}} ##{{NUMBER}}",
# "empty_template": "- No changes",
# "transformers": [
# {
# "pattern": "- (.*)",
# "target": "- $1|n|"
# }
# ]
# }
# - name: Sanitize Changelog
# id: sanitize-changelog
# shell: bash
# env:
# CHANGELOG: ${{steps.build-changelog.outputs.changelog}}
# run: |
# echo "-------------------------------------------------"
# clean="${CHANGELOG//[\`\[\]$'\n']/}"
# echo "sanitized: $clean"
# echo "sanitized=$clean" >> $GITHUB_OUTPUT
# - name: Get Polkadot Version
# id: polkadot-version
# run: echo "version=$(make version-polkadot)" >> $GITHUB_OUTPUT
# - name: Download Artifacts
# id: download
# uses: actions/download-artifact@v3
# with:
# name: artifacts-${{github.run_id}}
# path: /tmp
# - name: List Downloaded Artifacts
# working-directory: /tmp
# run: |
# ls -la
# - name: Install subwasm
# run: |
# cargo install --locked --git https://github.com/chevdor/subwasm --tag v0.19.1 --force
# subwasm --version
# - name: Get Runtimes Info
# id: get-runtimes-info
# working-directory: /tmp
# # Do NOT produce the dev version. That doesn't need to be part of the release notes, just in the artifacts
# run: |
# runtime_filename_rococo=${{needs.wait-for-all-builds.outputs.runtime_filename_rococo}}
# runtime_info_rococo=$(subwasm info $runtime_filename_rococo | sed -Ez '$ s/\n+$//' | tr '\n' '|')
# echo "runtime_info_rococo=$runtime_info_rococo" >> $GITHUB_OUTPUT
# runtime_filename_mainnet=${{needs.wait-for-all-builds.outputs.runtime_filename_mainnet}}
# runtime_info_mainnet=$(subwasm info $runtime_filename_mainnet | sed -Ez '$ s/\n+$//' | tr '\n' '|')
# echo "runtime_info_mainnet=$runtime_info_mainnet" >> $GITHUB_OUTPUT
# - name: Generate Release Notes
# working-directory: tools/ci/release-notes
# env:
# CHANGELOG: ${{steps.sanitize-changelog.outputs.sanitized}}
# RUNTIME_INFO_TESTNET: ${{steps.get-runtimes-info.outputs.runtime_info_rococo}}
# RUNTIME_INFO_MAINNET: ${{steps.get-runtimes-info.outputs.runtime_info_mainnet}}
# run: |
# ./build-release-notes.sh '${{steps.polkadot-version.outputs.version}}' \
# "${CHANGELOG}" \
# "${RUNTIME_INFO_TESTNET}" \
# "${RUNTIME_INFO_MAINNET}" \
# > release-notes.md
# - name: Publish Release Candidate on GitHub
# if: steps.is-full-release.outputs.is-full-release != 'true'
# uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
# with:
# name: "[Release Candidate] ${{env.NEW_RELEASE_TAG}}"
# prerelease: true
# body_path: tools/ci/release-notes/release-notes.md
# tag_name: ${{env.NEW_RELEASE_TAG}}
# files: |
# /tmp/frequency*.*
# /tmp/metadata-compare-*
# - name: Publish Full Release on GitHub
# if: steps.is-full-release.outputs.is-full-release == 'true'
# uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
# with:
# body_path: tools/ci/release-notes/release-notes.md
# tag_name: ${{env.NEW_RELEASE_TAG}}
# files: |
# /tmp/frequency*.*
# /tmp/metadata-compare-*
# - name: Get Latest Commit
# id: get-latest-commit
# run: |
# set -x
# latest_commit_sha=$(git rev-parse HEAD)
# echo "sha=$latest_commit_sha" >> $GITHUB_OUTPUT
# - name: Update Git Latest Tag
# if: |
# steps.is-full-release.outputs.is-full-release == 'true' &&
# env.TEST_RUN != 'true'
# uses: rickstaa/action-create-tag@88dbf7ff6fe2405f8e8f6c6fdfd78829bc631f83
# with:
# commit_sha: ${{steps.get-latest-commit.outputs.sha}}
# tag: ${{env.LATEST_FULL_RELEASE_TAG}}
# force_push_tag: true
# message: Latest full release
# - name: Dispatch Auto-signer Workflow
# if: env.TEST_RUN != 'true'
# uses: actions/github-script@v6
# with:
# github-token: ${{secrets.GHA_WORKFLOW_TRIGGER}}
# script: |
# await github.rest.actions.createWorkflowDispatch({
# owner: 'LibertyDSNP',
# repo: 'metadata-portal',
# workflow_id: 'auto-sign.yml',
# ref: 'main'
# })
# release-node-images:
# needs: wait-for-all-builds
# name: Release ${{matrix.arch}} Node Docker Image for ${{matrix.network}}
# strategy:
# fail-fast: true
# matrix:
# arch: [amd64]
# network: [rococo, mainnet]
# include:
# - network: rococo
# build-profile: release
# release-file-name-prefix: frequency-rococo
# - network: mainnet
# build-profile: release
# release-file-name-prefix: frequency
# - arch: amd64
# docker-platform: linux/amd64
# env:
# DOCKER_HUB_PROFILE: frequencychain
# IMAGE_NAME: parachain-node
# runs-on: ubuntu-20.04
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Set Env Vars
# run: |
# echo "BIN_DIR=target/${{matrix.build-profile}}" >> $GITHUB_ENV
# echo "BUILT_BIN_FILENAME=frequency" >> $GITHUB_ENV
# echo "RELEASE_BIN_FILENAME=${{matrix.release-file-name-prefix}}.${{matrix.arch}}" >> $GITHUB_ENV
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# - name: Full Release?
# id: is-full-release
# uses: ./.github/workflows/common/is-full-release
# with:
# version-tag: ${{env.NEW_RELEASE_TAG}}
# - name: Download Binaries
# id: download-binaries
# uses: actions/download-artifact@v3
# with:
# name: artifacts-${{github.run_id}}
# path: .
# - name: List Downloaded Binaries
# run: |
# download_dir=${{steps.download-binaries.outputs.download-path}}
# echo "Download dir: $download_dir"
# echo "Downloaded binaries: $(ls -l $download_dir)"
# - name: Move Binary to Target Dir
# run: |
# mkdir -p ${{env.BIN_DIR}}
# mv ${{env.RELEASE_BIN_FILENAME}} ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}}
# chmod +x ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}}
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# with:
# platforms: ${{matrix.arch}}
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Login to DockerHub
# uses: docker/login-action@v3
# with:
# username: ${{secrets.DOCKERHUB_USERNAME_FC}}
# password: ${{secrets.DOCKERHUB_TOKEN_FC}}
# - name: Build and Push Parachain Image
# uses: docker/build-push-action@v5
# with:
# context: .
# platforms: ${{matrix.docker-platform}}
# push: ${{env.TEST_RUN != 'true'}}
# file: ./docker/${{env.IMAGE_NAME}}.dockerfile
# tags: |
# ${{env.DOCKER_HUB_PROFILE}}/${{env.IMAGE_NAME}}-${{matrix.network}}:${{env.NEW_RELEASE_TAG}}
# - name: Update DockerHub Latest Tag
# if: steps.is-full-release.outputs.is-full-release == 'true'
# uses: docker/build-push-action@v5
# with:
# context: .
# platforms: ${{matrix.docker-platform}}
# push: ${{env.TEST_RUN != 'true'}}
# file: ./docker/${{env.IMAGE_NAME}}.dockerfile
# tags: |
# ${{env.DOCKER_HUB_PROFILE}}/${{env.IMAGE_NAME}}-${{matrix.network}}:latest
# - name: Update DockerHub Description
# if: env.TEST_RUN != 'true'
# uses: peter-evans/dockerhub-description@dc67fad7001ef9e8e3c124cb7a64e16d0a63d864
# with:
# username: ${{secrets.DOCKERHUB_USERNAME_FC}}
# password: ${{secrets.DOCKERHUB_TOKEN_FC}}
# repository: ${{env.DOCKER_HUB_PROFILE}}/${{env.IMAGE_NAME}}-${{matrix.network}}
# readme-filepath: docker/${{env.IMAGE_NAME}}-${{matrix.network}}.overview.md
# release-dev-images:
# needs: wait-for-all-builds
# name: Release Dev Docker Image for ${{matrix.node}}
# strategy:
# fail-fast: true
# matrix:
# arch: [amd64]
# node: [collator-node-local, instant-seal-node]
# include:
# - node: collator-node-local
# network: local
# build-profile: release
# release-file-name-prefix: frequency-rococo-local
# - node: instant-seal-node
# network: dev
# build-profile: release
# release-file-name-prefix: frequency-dev
# - arch: amd64
# build-profile: release
# docker-platform: linux/amd64
# env:
# DOCKER_HUB_PROFILE: frequencychain
# runs-on: ubuntu-20.04
# container: ghcr.io/libertydsnp/frequency/ci-base-image:1.0.0
# steps:
# - name: Set Env Vars
# run: |
# echo "BIN_DIR=target/${{matrix.build-profile}}" >> $GITHUB_ENV
# echo "BUILT_BIN_FILENAME=frequency" >> $GITHUB_ENV
# echo "RELEASE_BIN_FILENAME=${{matrix.release-file-name-prefix}}.${{matrix.arch}}" >> $GITHUB_ENV
# - name: Check Out Repo
# uses: actions/checkout@v4
# with:
# ref: ${{env.RELEASE_BRANCH_NAME}}
# - name: Full Release?
# id: is-full-release
# uses: ./.github/workflows/common/is-full-release
# with:
# version-tag: ${{env.NEW_RELEASE_TAG}}
# - name: Download Binaries
# id: download-binaries
# uses: actions/download-artifact@v3
# with:
# name: artifacts-${{github.run_id}}
# path: .
# - name: List Downloaded Binaries
# run: |
# download_dir=${{steps.download-binaries.outputs.download-path}}
# echo "Download dir: $download_dir"
# echo "Downloaded binaries: $(ls -l $download_dir)"
# - name: Move Binary to Target Dir
# run: |
# mkdir -p ${{env.BIN_DIR}}
# mv ${{env.RELEASE_BIN_FILENAME}} ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}}
# chmod +x ${{env.BIN_DIR}}/${{env.BUILT_BIN_FILENAME}}
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# with:
# platforms: ${{matrix.arch}}
# - name: Set up Docker Buildx