@@ -8,10 +8,16 @@ all: build
8
8
clean :
9
9
cargo clean
10
10
11
- .PHONY : start start-frequency start-frequency-docker start-manual start-interval start-interval-short start-with-offchain start-frequency-with-offchain start-manual-with-offchain start-interval-with-offchain
11
+ .PHONY : start start-bridging start-bridging-westend start- frequency start-frequency-docker start-manual start-interval start-interval-short start-with-offchain start-frequency-with-offchain start-manual-with-offchain start-interval-with-offchain
12
12
start :
13
13
./scripts/init.sh start-frequency-instant
14
14
15
+ start-bridging :
16
+ ./scripts/init.sh start-frequency-instant-bridging
17
+
18
+ start-bridging-westend :
19
+ ./scripts/init.sh start-frequency-westend-bridging
20
+
15
21
start-paseo-relay :
16
22
./scripts/init.sh start-paseo-relay-chain
17
23
@@ -90,7 +96,7 @@ register:
90
96
onboard :
91
97
./scripts/init.sh onboard-frequency-paseo-local
92
98
93
- .PHONY : onboard-res-local
99
+ .PHONY : onboard-debug
94
100
onboard-debug :
95
101
./scripts/init.sh onboard-res-local
96
102
@@ -244,7 +250,11 @@ docs:
244
250
docker-prune :
245
251
./scripts/prune_all.sh
246
252
247
- .PHONY : check check-no-relay check-local check-testnet check-mainnet
253
+ .PHONY : check check-no-relay check-local check-testnet check-mainnet check-bridging
254
+ # Add a target to run all checks to check that all existing features work with the addition of 'frequency-bridging'
255
+ # which is an add-on feature and not mutually exclusive with the other features.
256
+ check-all : check check-no-relay check-local check-testnet check-mainnet check-bridging
257
+
248
258
check :
249
259
SKIP_WASM_BUILD= cargo check --features runtime-benchmarks,frequency-lint-check
250
260
@@ -260,11 +270,20 @@ check-testnet:
260
270
check-mainnet :
261
271
SKIP_WASM_BUILD= cargo check --features frequency
262
272
273
+ check-bridging :
274
+ SKIP_WASM_BUILD= cargo check --features frequency,frequency-bridging
275
+ SKIP_WASM_BUILD= cargo check --features frequency-testnet,frequency-bridging
276
+ SKIP_WASM_BUILD= cargo check --features frequency-local,frequency-bridging
277
+
278
+
263
279
.PHONY : js
264
280
js :
265
281
./scripts/generate_js_definitions.sh
266
282
267
- .PHONY : build build-benchmarks build-no-relay build-local build-testnet build-mainnet build-testnet-release build-mainnet-release
283
+ .PHONY : build build-benchmarks build-no-relay build-local build-testnet build-mainnet build-testnet-release build-mainnet-release build-bridging-mainnet build-bridging-westend build-all
284
+
285
+ build-all : build build-benchmarks build-no-relay build-local build-testnet build-mainnet build-testnet-release build-mainnet-release build-bridging-mainnet build-bridging-westend
286
+
268
287
build :
269
288
cargo build --features frequency-no-relay
270
289
@@ -289,6 +308,12 @@ build-testnet-release:
289
308
build-mainnet-release :
290
309
cargo build --locked --features frequency --release
291
310
311
+ build-bridging-mainnet :
312
+ cargo build --features frequency,frequency-bridging
313
+
314
+ build-bridging-westend :
315
+ cargo build --features frequency-local,frequency-bridging
316
+
292
317
.PHONY : test e2e-tests e2e-tests-serial e2e-tests-only e2e-tests-load e2e-tests-load-only e2e-tests-testnet-paseo e2e-tests-paseo-local
293
318
test :
294
319
cargo test --workspace --features runtime-benchmarks,frequency-lint-check
0 commit comments