image: rust:latest stages: - sysdep - build - test sysdep: stage: sysdep script: - 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