15 lines
205 B
YAML
15 lines
205 B
YAML
|
stages:
|
||
|
- build
|
||
|
|
||
|
rust-latest:
|
||
|
stage: build
|
||
|
image: rust:latest
|
||
|
script:
|
||
|
- cargo build --verbose
|
||
|
|
||
|
rust-nightly:
|
||
|
stage: build
|
||
|
image: rustlang/rust:nightly
|
||
|
script:
|
||
|
- cargo build --verbose
|