2022-12-04 14:02:07 +00:00
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
|
|
|
|
rust-latest:
|
|
|
|
stage: build
|
|
|
|
image: rust:latest
|
|
|
|
script:
|
2022-12-06 21:29:48 +00:00
|
|
|
- cargo build -r --mainifest-path=lib/Cargo.toml
|
|
|
|
- cargo test -r --mainifest-path=lib/Cargo.toml
|
2022-12-04 14:02:07 +00:00
|
|
|
|
|
|
|
rust-nightly:
|
|
|
|
stage: build
|
|
|
|
image: rustlang/rust:nightly
|
|
|
|
script:
|
2022-12-06 21:29:48 +00:00
|
|
|
- cargo build -r --mainifest-path=lib/Cargo.toml
|
|
|
|
- cargo test -r --mainifest-path=lib/Cargo.toml
|
2022-12-04 14:02:07 +00:00
|
|
|
allow_failure: true
|