add missing udev

master
Ales Katona 6 years ago
parent 031501fa91
commit 533f2452bd
Signed by: almindor
GPG Key ID: 08C459E2D8ABB7E8

@ -1,17 +1,21 @@
image: rust:latest
stages: stages:
- sysdep
- build - build
- test
sysdep:
stage: sysdep
script:
- apt-get install libudev-dev
rust-latest: build:
stage: build stage: build
image: rust:latest
script: script:
- cargo build --verbose --features backend_piston,backend_gilrs - cargo build --verbose --features backend_piston,backend_gilrs
- cargo test --verbose --features backend_piston,backend_gilrs
rust-nightly: test:
stage: build stage: test
image: rustlang/rust:nightly
script: script:
- cargo build --verbose - cargo test --features backend_piston,backend_gilrs
- cargo test --verbose
allow_failure: true

Loading…
Cancel
Save