This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
354 lines (344 loc) · 11.1 KB
/
parachain.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
name: bridge
on:
push:
paths:
- "bridges/snowbridge/**"
- "!bridges/snowbridge/README.md"
- "!bridges/snowbridge/LICENSE"
branches:
- snowbridge
pull_request:
workflow_dispatch:
env:
FUZZ_MAX_LEN: 10000000000
FUZZ_MAX_RUNS: 30000
RUST_NIGHTLY: "2024-02-08"
jobs:
format:
runs-on: snowbridge-runner
env:
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: 1
RUSTFLAGS: -C debuginfo=1
SKIP_WASM_BUILD: 1
steps:
- uses: actions/checkout@v2
with:
submodules: "true"
- uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache@v1
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- uses: actions/setup-node@v4.0.0
with:
node-version: "18.x"
registry-url: "https://npm.pkg.github.com"
scope: "@paritytech"
- name: setup rust toolchain
run: |
rustup target add wasm32-unknown-unknown
curl -LO https://github.com/paritytech/rustc-rv32e-toolchain/releases/download/v1.1.0/rust-rve-nightly-2024-01-05-x86_64-unknown-linux-gnu.tar.zst
tar -I zstd -xf rust-rve-nightly-2024-01-05-x86_64-unknown-linux-gnu.tar.zst
mv rve-nightly ~/.rustup/toolchains/
rustup toolchain install nightly
rustup component add rustfmt --toolchain nightly
rustup show
- name: format
run: >
cargo +nightly fmt
-p snowbridge-pallet-ethereum-client
-p snowbridge-pallet-inbound-queue
-p snowbridge-pallet-outbound-queue
-p snowbridge-outbound-queue-merkle-tree
-p snowbridge-pallet-system
-p snowbridge-beacon-primitives
-p snowbridge-core
-p snowbridge-ethereum
-p snowbridge-router-primitives
-p snowbridge-runtime-common
-p snowbridge-runtime-test-common
-p bridge-hub-westend-runtime
-p bridge-hub-westend-integration-tests
--
--check
- name: install taplo
run: |
cargo install taplo-cli --locked
- name: taplo
run: taplo format --check --config .config/taplo.toml
- name: install zepter
run: |
cargo install zepter -f --locked
- name: zepter
run: zepter run check
- name: lint-markdown
run: |
npm install -g markdownlint-cli
markdownlint --version
markdownlint --config .github/.markdownlint.yaml --ignore target
check:
runs-on: snowbridge-runner
env:
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: 1
RUSTFLAGS: -C debuginfo=1
SKIP_WASM_BUILD: 1
steps:
- uses: actions/checkout@v2
with:
submodules: "true"
- uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache@v1
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- uses: actions/setup-node@v4.0.0
with:
node-version: "18.x"
registry-url: "https://npm.pkg.github.com"
scope: "@paritytech"
- name: setup rust toolchain
run: |
rustup target add wasm32-unknown-unknown
curl -LO https://github.com/paritytech/rustc-rv32e-toolchain/releases/download/v1.1.0/rust-rve-nightly-2024-01-05-x86_64-unknown-linux-gnu.tar.zst
tar -I zstd -xf rust-rve-nightly-2024-01-05-x86_64-unknown-linux-gnu.tar.zst
mv rve-nightly ~/.rustup/toolchains/
rustup toolchain install nightly
rustup component add rustfmt --toolchain nightly
rustup show
- name: cargo check
run: >
cargo check -p snowbridge-pallet-ethereum-client
-p snowbridge-pallet-inbound-queue
-p snowbridge-pallet-outbound-queue
-p snowbridge-outbound-queue-merkle-tree
-p snowbridge-pallet-system
-p snowbridge-beacon-primitives
-p snowbridge-core
-p snowbridge-ethereum
-p snowbridge-router-primitives
-p snowbridge-runtime-common
- name: clippy
run: >
cargo clippy -p snowbridge-pallet-ethereum-client
-p snowbridge-pallet-inbound-queue
-p snowbridge-pallet-outbound-queue
-p snowbridge-outbound-queue-merkle-tree
-p snowbridge-pallet-system
-p snowbridge-beacon-primitives
-p snowbridge-core
-p snowbridge-ethereum
-p snowbridge-router-primitives
-p snowbridge-runtime-common
-p snowbridge-runtime-test-common
-p bridge-hub-westend-runtime
-p bridge-hub-westend-integration-tests
-- -D warnings
test:
needs: check
runs-on: snowbridge-runner
env:
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: 1
RUSTFLAGS: -C debuginfo=1
SKIP_WASM_BUILD: 1
RUST_MIN_STACK: 8388608
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
submodules: "true"
- uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache@v1
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: setup rust toolchain
run: rustup show
# Increase stack limit for beacon light client tests
- run: sudo prlimit --pid $$ --stack=32768
# Run tests for runtime-benchmarks feature
- name: Tests for runtime-benchmarks
run: >
cargo test
-p snowbridge-pallet-ethereum-client
-p snowbridge-pallet-inbound-queue
-p snowbridge-pallet-outbound-queue
-p snowbridge-outbound-queue-merkle-tree
-p snowbridge-pallet-system
-p snowbridge-beacon-primitives
-p snowbridge-core
-p snowbridge-ethereum
-p snowbridge-router-primitives
-p snowbridge-runtime-common
--features runtime-benchmarks
# Run tests for all features
- name: Tests for all features
run: >
cargo test
-p snowbridge-pallet-ethereum-client
-p snowbridge-pallet-inbound-queue
-p snowbridge-pallet-outbound-queue
-p snowbridge-outbound-queue-merkle-tree
-p snowbridge-pallet-system
-p snowbridge-beacon-primitives
-p snowbridge-core
-p snowbridge-ethereum
-p snowbridge-router-primitives
-p snowbridge-runtime-common
--all-features
coverage:
if: false
needs: check
runs-on: snowbridge-runner
env:
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: 1
RUSTFLAGS: -C debuginfo=1
SKIP_WASM_BUILD: 1
RUST_MIN_STACK: 8388608
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
submodules: "true"
- uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: setup rust toolchain
run: rustup show
- name: run coverage test
run: >
cargo install cargo-tarpaulin@0.27.0 &&
cargo tarpaulin
--workspace
--engine llvm
--out xml
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3
with:
files: cobertura.xml
flags: rust
check-cumulus:
runs-on: snowbridge-runner
steps:
- uses: actions/checkout@v2
with:
submodules: "true"
- uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: setup rust toolchain
run: rustup show
- name: check bridge-hub features
run: >
cargo check
--release --verbose
-p bridge-hub-westend-runtime
--features fast-runtime
--features runtime-benchmarks
--features try-runtime
- name: check asset-hub
run: >
cargo check
--release --verbose
-p asset-hub-westend-runtime
runtime-tests:
needs: check
runs-on: snowbridge-runner
steps:
- uses: actions/checkout@v2
with:
submodules: "true"
- uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: setup rust toolchain
run: rustup show
- name: snowbridge runtime tests
run: >
RUST_LOG=xcm=trace cargo test
-p bridge-hub-rococo-runtime
-p bridge-hub-westend-runtime
--test snowbridge
-- --nocapture
integration-tests:
needs: check
runs-on: snowbridge-runner
steps:
- uses: actions/checkout@v2
with:
submodules: "true"
- uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: setup rust toolchain
run: rustup show
- name: bridge-hub and asset-hub integration tests
run: >
RUST_LOG=xcm=trace cargo test
-p bridge-hub-rococo-integration-tests
-p asset-hub-rococo-integration-tests
-p bridge-hub-westend-integration-tests
-p asset-hub-westend-integration-tests
-- --nocapture
beacon-fuzz:
if: false
needs: test
runs-on: snowbridge-runner
env:
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: 1
RUSTFLAGS: -C debuginfo=1
SKIP_WASM_BUILD: 1
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
submodules: "true"
- uses: actions/cache@v1
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: install nightly
run: rustup install --profile minimal nightly-$RUST_NIGHTLY
- name: Install cargo-fuzz from crates.io
uses: baptiste0928/cargo-install@v2
with:
crate: cargo-fuzz
version: "^0.11.2"
- name: Fuzz force checkpoint extrinsic
run: >
cd bridges/snowbridge/pallets/ethereum-beacon-client && cargo +nightly-$RUST_NIGHTLY fuzz run fuzz_force_checkpoint --
-max_len=$FUZZ_MAX_LEN -runs=$FUZZ_MAX_RUNS
- name: Fuzz submit extrinsic
run: >
cd bridges/snowbridge/pallets/ethereum-beacon-client && cargo +nightly-$RUST_NIGHTLY fuzz run fuzz_submit --
-max_len=$FUZZ_MAX_LEN -runs=$FUZZ_MAX_RUNS
- name: Fuzz submit execution header extrinsic
run: >
cd bridges/snowbridge/pallets/ethereum-beacon-client && cargo +nightly-$RUST_NIGHTLY fuzz run fuzz_submit_execution_header --
-max_len=$FUZZ_MAX_LEN -runs=$FUZZ_MAX_RUNS