Unverified Commit c62e1f4c authored by Denis_P's avatar Denis_P 🏑 Committed by GitHub
Browse files

making CI faster by ~1 min; (#359)

* making CI faster by ~1 min; cargo test does not need to run --release

* change (ci): return --release
parent 4bd45c57
Pipeline #90448 passed with stages
in 9 minutes and 33 seconds
......@@ -167,6 +167,8 @@ fmt:
examples-test:
stage: examples
<<: *docker-env
needs:
- clippy-std
script:
- for example in examples/*/; do
cargo test --verbose --manifest-path ${example}/Cargo.toml;
......@@ -183,6 +185,8 @@ examples-fmt:
examples-clippy-std:
stage: examples
<<: *docker-env
needs:
- clippy-std
script:
- for example in examples/*/; do
cargo clippy --verbose --manifest-path ${example}/Cargo.toml -- -D warnings;
......@@ -210,6 +214,8 @@ examples-contract-build:
examples-generate-metadata:
stage: examples
<<: *docker-env
needs:
- build-wasm
script:
- *update-cargo-contract
- for example in examples/*/; do
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment