CI: Remove build stage
`cargo test` rebuilds all of it anyway. Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
5eeac93f67
commit
080c7b8c95
1 changed files with 0 additions and 16 deletions
|
@ -1,6 +1,5 @@
|
||||||
stages:
|
stages:
|
||||||
- lint
|
- lint
|
||||||
- build
|
|
||||||
- test
|
- test
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
|
@ -14,11 +13,6 @@ variables:
|
||||||
image: rustlang/rust:nightly
|
image: rustlang/rust:nightly
|
||||||
allow_failure: true # It's not often, but it happens nightly breaks, surprisingly.
|
allow_failure: true # It's not often, but it happens nightly breaks, surprisingly.
|
||||||
|
|
||||||
.build:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- cargo build --verbose
|
|
||||||
|
|
||||||
.test:
|
.test:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
|
@ -32,16 +26,6 @@ rustfmt:
|
||||||
extends:
|
extends:
|
||||||
- .stable
|
- .stable
|
||||||
|
|
||||||
stable-build:
|
|
||||||
extends:
|
|
||||||
- .build
|
|
||||||
- .stable
|
|
||||||
|
|
||||||
nightly-build:
|
|
||||||
extends:
|
|
||||||
- .build
|
|
||||||
- .nightly
|
|
||||||
|
|
||||||
stable-test:
|
stable-test:
|
||||||
extends:
|
extends:
|
||||||
- .test
|
- .test
|
||||||
|
|
Loading…
Reference in a new issue