add CI
parent
4eda2b78ef
commit
031501fa91
@ -0,0 +1,17 @@
|
|||||||
|
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
|
Loading…
Reference in New Issue