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.
23 lines
338 B
YAML
23 lines
338 B
YAML
image: rust:latest
|
|
|
|
stages:
|
|
- sysdep
|
|
- build
|
|
- test
|
|
|
|
sysdep:
|
|
stage: sysdep
|
|
script:
|
|
- apt-get update
|
|
- apt-get install libudev-dev
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- cargo build --verbose --features backend_piston,backend_gilrs
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- cargo test --features backend_piston,backend_gilrs
|