@@ -61,21 +61,17 @@ cargo-clippy:
6161 needs :
6262 - job : cargo-fmt
6363 artifacts : false
64- variables :
65- RUSTY_CACHIER_TOOLCHAIN : nightly
6664 extends :
6765 - .docker-env
6866 - .test-refs
6967 script :
7068 - rusty-cachier snapshot create
71- - SKIP_WASM_BUILD=1 env -u RUSTFLAGS cargo +nightly clippy --all-targets
69+ - SKIP_WASM_BUILD=1 env -u RUSTFLAGS cargo clippy --all-targets
7270 - rusty-cachier cache upload
7371
7472cargo-check-benches :
7573 stage : test
7674 variables :
77- # Override to use nightly toolchain
78- RUSTY_CACHIER_TOOLCHAIN : " nightly"
7975 CI_JOB_NAME : " cargo-check-benches"
8076 extends :
8177 - .docker-env
@@ -105,7 +101,7 @@ cargo-check-benches:
105101 - echo "___Running benchmarks___";
106102 - case ${CI_NODE_INDEX} in
107103 1)
108- SKIP_WASM_BUILD=1 time cargo +nightly check --locked --benches --all;
104+ SKIP_WASM_BUILD=1 time cargo check --locked --benches --all;
109105 cargo run --locked --release -p node-bench -- ::trie::read::small --json
110106 | tee ./artifacts/benches/$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA/::trie::read::small.json;
111107 echo "___Uploading cache for rusty-cachier___";
@@ -301,17 +297,16 @@ test-frame-examples-compile-to-wasm:
301297 - .docker-env
302298 - .test-refs
303299 variables :
304- RUSTY_CACHIER_TOOLCHAIN : nightly
305300 # Enable debug assertions since we are running optimized builds for testing
306301 # but still want to have debug assertions.
307302 RUSTFLAGS : " -C debug-assertions"
308303 RUST_BACKTRACE : 1
309304 script :
310305 - rusty-cachier snapshot create
311306 - cd ./frame/examples/offchain-worker/
312- - cargo +nightly build --locked --target=wasm32-unknown-unknown --no-default-features
307+ - cargo build --locked --target=wasm32-unknown-unknown --no-default-features
313308 - cd ../basic
314- - cargo +nightly build --locked --target=wasm32-unknown-unknown --no-default-features
309+ - cargo build --locked --target=wasm32-unknown-unknown --no-default-features
315310 - rusty-cachier cache upload
316311
317312test-linux-stable-int :
@@ -344,17 +339,15 @@ check-tracing:
344339 needs :
345340 - job : test-linux-stable-int
346341 artifacts : false
347- variables :
348- RUSTY_CACHIER_TOOLCHAIN : nightly
349342 extends :
350343 - .docker-env
351344 - .test-refs
352345 - .pipeline-stopper-artifacts
353346 script :
354347 - rusty-cachier snapshot create
355348 # with-tracing must be explicitly activated, we run a test to ensure this works as expected in both cases
356- - time cargo +nightly test --locked --manifest-path ./primitives/tracing/Cargo.toml --no-default-features
357- - time cargo +nightly test --locked --manifest-path ./primitives/tracing/Cargo.toml --no-default-features --features=with-tracing
349+ - time cargo test --locked --manifest-path ./primitives/tracing/Cargo.toml --no-default-features
350+ - time cargo test --locked --manifest-path ./primitives/tracing/Cargo.toml --no-default-features --features=with-tracing
358351 - rusty-cachier cache upload
359352
360353# more information about this job can be found here:
@@ -369,17 +362,16 @@ test-full-crypto-feature:
369362 - .docker-env
370363 - .test-refs
371364 variables :
372- RUSTY_CACHIER_TOOLCHAIN : nightly
373365 # Enable debug assertions since we are running optimized builds for testing
374366 # but still want to have debug assertions.
375367 RUSTFLAGS : " -C debug-assertions"
376368 RUST_BACKTRACE : 1
377369 script :
378370 - rusty-cachier snapshot create
379371 - cd primitives/core/
380- - time cargo +nightly build --locked --verbose --no-default-features --features full_crypto
372+ - time cargo build --locked --verbose --no-default-features --features full_crypto
381373 - cd ../application-crypto
382- - time cargo +nightly build --locked --verbose --no-default-features --features full_crypto
374+ - time cargo build --locked --verbose --no-default-features --features full_crypto
383375 - rusty-cachier cache upload
384376
385377check-rustdoc :
@@ -388,12 +380,11 @@ check-rustdoc:
388380 - .docker-env
389381 - .test-refs
390382 variables :
391- RUSTY_CACHIER_TOOLCHAIN : nightly
392383 SKIP_WASM_BUILD : 1
393384 RUSTDOCFLAGS : " -Dwarnings"
394385 script :
395386 - rusty-cachier snapshot create
396- - time cargo +nightly doc --locked --workspace --all-features --verbose --no-deps
387+ - time cargo doc --locked --workspace --all-features --verbose --no-deps
397388 - rusty-cachier cache upload
398389
399390cargo-check-each-crate :
0 commit comments