Init gitlab ci pipeline
This commit is contained in:
parent
4732783d4a
commit
d2430f7215
1 changed files with 16 additions and 0 deletions
16
.gitlab-ci.yml
Normal file
16
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
stages:
|
||||||
|
- build
|
||||||
|
|
||||||
|
build-rust-latest:
|
||||||
|
stage: build
|
||||||
|
image: rustlang/rust:latest
|
||||||
|
script:
|
||||||
|
- cargo build --verbose
|
||||||
|
- cargo test --verbose
|
||||||
|
|
||||||
|
build-rust-nightly:
|
||||||
|
stage: build
|
||||||
|
image: rustlang/rust:nightly
|
||||||
|
script:
|
||||||
|
- cargo build --verbose
|
||||||
|
- cargo test --verbose
|
Loading…
Reference in a new issue