Cargo check benches (#2862)

* add job
This commit is contained in:
TriplEight
2019-06-14 12:58:09 +02:00
committed by GitHub
parent e777038418
commit 0f44a28ce3
+12 -4
View File
@@ -7,7 +7,6 @@
stages:
- pre-test
- test
- build
- publish
@@ -58,7 +57,7 @@ variables:
#### stage: test
check-runtime:
stage: pre-test
stage: test
image: parity/tools:latest
<<: *kubernetes-build
only:
@@ -72,7 +71,7 @@ check-runtime:
check-line-width:
stage: pre-test
stage: test
image: parity/tools:latest
<<: *kubernetes-build
only:
@@ -83,7 +82,7 @@ check-line-width:
cargo-audit:
stage: pre-test
stage: test
<<: *docker-env
except:
- /^[0-9]+$/
@@ -92,6 +91,15 @@ cargo-audit:
allow_failure: true
cargo-check-benches:
stage: test
<<: *docker-env
script:
- ./scripts/build.sh --locked
- time cargo check --benches
- sccache -s
cargo-check-subkey:
stage: test
<<: *docker-env