ci: split build and test stages

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2018-12-20 16:11:16 +00:00 committed by Emmanuel Gil Peyrot
parent 96c8b05677
commit 04c5bcac1d

View file

@ -1,16 +1,27 @@
stages:
- build
- test
rust-latest:
rust-latest-build:
stage: build
image: rust:latest
script:
- cargo build --verbose
- cargo test --verbose
rust-nightly:
rust-nightly-build:
stage: build
image: rustlang/rust:nightly
script:
- cargo build --verbose
rust-latest-test:
stage: test
image: rust:latest
script:
- cargo test --verbose
rust-nightly-test:
stage: test
image: rustlang/rust:nightly
script:
- cargo test --verbose