Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit d49e935

Browse files
committed
Merge branch 'master' into pr/4709
2 parents fc990f0 + e8ee462 commit d49e935

File tree

41 files changed

+1145
-385
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1145
-385
lines changed

.gitlab-ci.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,19 @@ check-runtime-benchmarks:
230230
<<: *compiler-info
231231
<<: *vault-secrets
232232
script:
233-
# Check that the node will compile with `runtime-benchmarks` feature flag.
234-
- ./scripts/gitlab/check_runtime_benchmarks.sh
233+
# Check that everything compiles with `runtime-benchmarks` feature flag.
234+
- cargo check --features runtime-benchmarks --all
235+
- sccache -s
236+
237+
check-try-runtime:
238+
stage: test
239+
<<: *test-refs
240+
<<: *docker-env
241+
<<: *compiler-info
242+
<<: *vault-secrets
243+
script:
244+
# Check that everything compiles with `try-runtime` feature flag.
245+
- cargo check --features try-runtime --all
235246
- sccache -s
236247

237248
check-no-default-features:
@@ -242,7 +253,8 @@ check-no-default-features:
242253
<<: *vault-secrets
243254
script:
244255
# Check that polkadot-cli will compile no default features.
245-
- ./scripts/gitlab/check_no_default_features.sh
256+
- pushd node/service && cargo check --no-default-features && popd
257+
- pushd cli && cargo check --no-default-features --features "service" && popd
246258
- sccache -s
247259

248260
spellcheck:

0 commit comments

Comments
 (0)