From 97f30fbf01212b3b6daadc401221c034a7963efb Mon Sep 17 00:00:00 2001 From: Ales Katona Date: Wed, 23 Jan 2019 14:39:15 -0700 Subject: [PATCH] use custom docker image --- .gitlab-ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4818f74..8f89d1b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,15 +1,14 @@ -image: rust:latest +image: bitsmart/rust:1.32 stages: - - sysdep + - lint - build - test -sysdep: - stage: sysdep +lint: + stage: lint script: - - apt-get update - - apt-get install libudev-dev + - cargo clippy --features backend_piston,backend_gilrs build: stage: build