-
Notifications
You must be signed in to change notification settings - Fork 8
492 lines (426 loc) · 16 KB
/
ci.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
name: build and test notee client and node
on:
workflow_dispatch:
push:
branches: [ master, sgx-master ]
tags:
- '[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches: [ master, sgx-master ]
# schedule:
# - cron: '42 3 * * *'
env:
CARGO_TERM_COLOR: always
IPFS_ADD_URL: "https://ipfs.infura.io:5001/api/v0/add"
IPFS_API_KEY: ${{ secrets.IPFS_API_KEY }}
ENCOINTER_CLIENT: "../target/release/encointer-client-notee"
VERBOSE: ${{ github.events.input.verbose }}
SUBWASM_VERSION: 0.14.1
jobs:
cancel_previous_runs:
name: Cancel Previous Runs
runs-on: ubuntu-22.04
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install protoc
run: sudo apt-get install protobuf-compiler
# With rustup's nice new toml format, we just need to run rustup show to install the toolchain
# https://github.com/actions-rs/toolchain/issues/126#issuecomment-782989659
- name: Setup Rust toolchain
run: rustup show
- uses: Swatinem/rust-cache@v2
with:
shared-key: "release"
- name: Build
run: cargo build --release
- name: Upload node
uses: actions/upload-artifact@v4
with:
name: encointer-node-notee-${{ github.sha }}
path: target/release/encointer-node-notee
- name: Upload CLI client
uses: actions/upload-artifact@v4
with:
name: encointer-client-notee-${{ github.sha }}
path: target/release/encointer-client-notee
build-try-runtime-and-benchmarks:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install protoc
run: sudo apt-get install protobuf-compiler
# With rustup's nice new toml format, we just need to run rustup show to install the toolchain
# https://github.com/actions-rs/toolchain/issues/126#issuecomment-782989659
- name: Setup Rust toolchain
run: rustup show
- uses: Swatinem/rust-cache@v2
with:
shared-key: "release"
- name: Build
run: cargo build --release --features try-runtime,runtime-benchmarks
- name: Upload node
uses: actions/upload-artifact@v4
with:
name: encointer-node-notee-try-runtime-and-benchmarks-${{ github.sha }}
path: target/release/encointer-node-notee
- name: Upload CLI client
uses: actions/upload-artifact@v4
with:
name: encointer-client-notee-try-runtime-and-benchmarks-${{ github.sha }}
path: target/release/encointer-client-notee
build-runtimes:
name: Build Runtimes
runs-on: ubuntu-22.04
strategy:
matrix:
runtime: [ "encointer-node-notee" ]
steps:
- uses: actions/checkout@v3
- name: Cache target dir
uses: actions/cache@v3
with:
path: "${{ github.workspace }}/runtime/target"
key: srtool-target-${{ matrix.runtime }}-${{ github.sha }}
restore-keys: |
srtool-target-${{ matrix.runtime }}-
srtool-target-
- name: Srtool build
id: srtool_build
uses: chevdor/[email protected]
with:
image: paritytech/srtool
tag: 1.77.0
chain: ${{ matrix.runtime }}
runtime_dir: runtime
- name: Summary
run: |
echo '${{ steps.srtool_build.outputs.json }}' | jq > ${{ matrix.runtime }}-srtool-digest.json
cat ${{ matrix.runtime }}-srtool-digest.json
echo "Compact Runtime: ${{ steps.srtool_build.outputs.wasm }}"
echo "Compressed Runtime: ${{ steps.srtool_build.outputs.wasm_compressed }}"
# We now get extra information thanks to subwasm
- name: Install subwasm
run: |
wget https://github.com/chevdor/subwasm/releases/download/v${{ env.SUBWASM_VERSION }}/subwasm_linux_amd64_v${{ env.SUBWASM_VERSION }}.deb
sudo dpkg -i subwasm_linux_amd64_v${{ env.SUBWASM_VERSION }}.deb
subwasm --version
- name: Show Runtime information
shell: bash
run: |
subwasm info ${{ steps.srtool_build.outputs.wasm }}
subwasm info ${{ steps.srtool_build.outputs.wasm_compressed }}
subwasm --json info ${{ steps.srtool_build.outputs.wasm }} > ${{ matrix.runtime }}-info.json
subwasm --json info ${{ steps.srtool_build.outputs.wasm_compressed }} > ${{ matrix.runtime }}-compressed-info.json
- name: Extract the metadata
shell: bash
run: |
subwasm meta ${{ steps.srtool_build.outputs.wasm }}
subwasm --json meta ${{ steps.srtool_build.outputs.wasm }} > ${{ matrix.runtime }}-metadata.json
# This is unsupported it wants to diff the metadata with a running chain. i.e. wss://kusama-<matrix.chain>-rpc.parity.io
# - name: Check the metadata diff
# shell: bash
# run: |
# subwasm diff ${{ steps.srtool_build.outputs.wasm }} --chain-b ${{ matrix.chain }} > ${{ matrix.chain }}-diff.txt
# cat ${{ matrix.chain }}-diff.txt
- name: Upload ${{ matrix.runtime }} srtool json
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.runtime }}-srtool-json-${{ github.sha }}
path: |
${{ matrix.runtime }}-srtool-digest.json
${{ matrix.runtime }}-info.json
${{ matrix.runtime }}-compressed-info.json
${{ matrix.runtime }}-metadata.json
# ${{ matrix.runtime }}-diff.txt
- name: Upload ${{ matrix.runtime }} runtime
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.runtime }}-runtime-${{ github.sha }}
path: |
${{ steps.srtool_build.outputs.wasm }}
${{ steps.srtool_build.outputs.wasm_compressed }}
unit-tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install protoc
run: sudo apt-get install protobuf-compiler
# With rustup's nice new toml format, we just need to run rustup show to install the toolchain
# https://github.com/actions-rs/toolchain/issues/126#issuecomment-782989659
- name: Setup Rust toolchain
run: rustup show
- uses: Swatinem/rust-cache@v2
with:
shared-key: "debug"
- name: cargo test
run: cargo test --all
check:
name: Rust check ${{ matrix.check }} (${{ matrix.rust-target }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04 ]
rust: [ stable ]
rust-target: [ x86_64-unknown-linux-gnu ]
check: [ +nightly fmt --all -- --check, clippy -p encointer-client-notee ]
env:
RUST_BACKTRACE: full
RUSTV: ${{ matrix.rust }}
TARGET: ${{ matrix.rust-target }}
steps:
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt
- name: Checkout
uses: actions/checkout@v3
- name: Install protoc
run: sudo apt-get install protobuf-compiler
# With rustup's nice new toml format, we just need to run rustup show to install the toolchain
# https://github.com/actions-rs/toolchain/issues/126#issuecomment-782989659
- name: Setup Rust toolchain
run: rustup show
- uses: Swatinem/rust-cache@v2
with:
shared-key: "debug"
- name: ${{ matrix.check }}
run: cargo ${{ matrix.check }}
cargo-toml-fmt:
runs-on: ubuntu-22.04
container: "tamasfe/taplo:0.7.0-alpine"
steps:
- uses: actions/checkout@v3
- name: Run Taplo fmt
run: taplo fmt --check
- name: Fail-fast; cancel other jobs
if: failure()
uses: andymckay/[email protected]
integration-test:
name: ${{ matrix.test }}
runs-on: ubuntu-22.04
needs: build
strategy:
matrix:
test: [ test_bootstrap_demo_community.sh, test_bot_community.sh, test_register_business.sh ]
steps:
- uses: actions/checkout@v3
- name: download build artifacts
uses: actions/download-artifact@v4
with:
name: encointer-node-notee-${{ github.sha }}
- name: download build artifacts
uses: actions/download-artifact@v4
with:
name: encointer-client-notee-${{ github.sha }}
- name: fix permissions of artifacts and move to original folder
run: |
chmod +x encointer-node-notee
chmod +x encointer-client-notee
mkdir -p target/release
mv encointer-*-notee target/release
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: install py dependencies
run: ./scripts/install_python_deps.sh
- name: Set up ipfs
uses: ibnesayeed/setup-ipfs@master
with:
run_daemon: true
- name: start dev node
run:
./target/release/encointer-node-notee --tmp --dev --enable-offchain-indexing true --rpc-methods unsafe &
- name: start faucet service
run: |
cd client
python faucet.py &
- name: start phase accelerator service
run: |
cd client
python phase.py --idle-blocks 3 &
- name: Test ${{ matrix.test }}
working-directory: ./scripts/ci
run: source ./init_env.sh && ./${{ matrix.test }}
integration-test-docker:
name: ${{ matrix.test }}
runs-on: ubuntu-22.04
needs: build
strategy:
fail-fast: false
matrix:
test:
- bootstrap_demo_community.py --signer //Bob --test
- bot-community-test -f http://host.docker.internal:5000/api
# Todo: #386
# - test-register-businesses -f http://host.docker.internal:5000/api
steps:
- uses: actions/checkout@v3
- name: download build artifacts
uses: actions/download-artifact@v4
with:
name: encointer-node-notee-${{ github.sha }}
# for debugging the integration tests, we can just download an image from a previous run
# name: encointer-node-notee-4d0313f614223edf63cd0a5f0ad3d5ce16b81e6c
# github-token: ${{ github.token }}
# run-id: 12787265993
- name: download build artifacts
uses: actions/download-artifact@v4
with:
name: encointer-client-notee-${{ github.sha }}
# for debugging the integration tests, we can just download an image from a previous run
# name: encointer-client-notee-4d0313f614223edf63cd0a5f0ad3d5ce16b81e6c
# github-token: ${{ github.token }}
# run-id: 12787265993
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Dockerhub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache-node
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Docker build client
run: |
docker build \
--cache-from=type=gha \
-t encointer-client-test .
- name: Docker build node
run: |
docker build \
--cache-from=type=gha \
-f Dockerfile-node \
-t encointer-node-test .
- name: Set up ipfs
uses: ibnesayeed/setup-ipfs@master
with:
run_daemon: true
- name: start dev node
run: |
docker run -p 30333:30333 -p 9944:9944 -p 9615:9615 \
encointer-node-test \
--dev \
--enable-offchain-indexing=true \
--rpc-methods=unsafe \
-lencointer=debug,parity_ws=warn \
--rpc-external &
- name: start faucet service
run: |
docker run -p 5000:5000 \
--add-host host.docker.internal:host-gateway \
encointer-client-test faucet.py \
-u ws://host.docker.internal \
--port 9944 &
- name: start phase accelerator service
run: |
docker run \
--add-host host.docker.internal:host-gateway \
encointer-client-test phase.py \
-u ws://host.docker.internal \
--port 9944 --idle-blocks 3 &
- name: Test ${{ matrix.test }}
run: |
docker run \
--add-host host.docker.internal:host-gateway \
encointer-client-test ${{ matrix.test }} \
-u ws://host.docker.internal \
--port 9944 \
release:
name: Draft Release
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-22.04
needs: [ build, unit-tests, check, integration-test ]
outputs:
release_url: ${{ steps.create-release.outputs.html_url }}
asset_upload_url: ${{ steps.create-release.outputs.upload_url }}
steps:
- uses: actions/checkout@v3
- name: Download Encointer Node
uses: actions/download-artifact@v4
with:
name: encointer-node-notee-${{ github.sha }}
- name: Download Encointer Client
uses: actions/download-artifact@v4
with:
name: encointer-client-notee-${{ github.sha }}
- name: Create required package.json
run: test -f package.json || echo '{}' >package.json
- name: Changelog
uses: scottbrenner/generate-changelog-action@master
id: Changelog
- name: Display structure of downloaded files
run: ls -R
working-directory: .
- name: Release
id: create-release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body: |
${{ steps.Changelog.outputs.changelog }}
draft: true
files: |
encointer-node-notee
encointer-client-notee
publish-runtimes:
name: Publish Runtimes
runs-on: ubuntu-22.04
needs: [ release, build-runtimes ]
strategy:
matrix:
runtime: [ "encointer-node-notee" ]
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
- name: Set up Ruby 3
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: Get runtime version
id: get-runtime-ver
run: |
ls
ls "${{ matrix.runtime }}-runtime-${{ github.sha }}"
runtime_ver="$(ruby -e 'require "./scripts/github/lib.rb"; puts get_runtime()')"
echo "Found version: >$runtime_ver<"
echo "runtime_ver={$runtime_ver}" >> $GITHUB_OUTPUT
- name: Upload compact ${{ matrix.runtime }} wasm
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.asset_upload_url }}
asset_path: "${{ matrix.runtime }}-runtime-${{ github.sha }}/encointer_node_notee_runtime.compact.wasm"
asset_name: encointer_node_notee_runtime-v${{ steps.get-runtime-ver.outputs.runtime_ver }}.compact.wasm
asset_content_type: application/wasm
- name: Upload compressed ${{ matrix.runtime }} wasm
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.asset_upload_url }}
asset_path: "${{ matrix.runtime }}-runtime-${{ github.sha }}/encointer_node_notee_runtime.compact.compressed.wasm"
asset_name: encointer_node_notee_runtime-v${{ steps.get-runtime-ver.outputs.runtime_ver }}.compact.compressed.wasm
asset_content_type: application/wasm