You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
361 B
YAML
18 lines
361 B
YAML
stages:
|
|
- build
|
|
|
|
rust-latest:
|
|
stage: build
|
|
image: rust:latest
|
|
script:
|
|
- cargo build --verbose --features backend_piston,backend_gilrs
|
|
- cargo test --verbose --features backend_piston,backend_gilrs
|
|
|
|
rust-nightly:
|
|
stage: build
|
|
image: rustlang/rust:nightly
|
|
script:
|
|
- cargo build --verbose
|
|
- cargo test --verbose
|
|
allow_failure: true
|