From 2ff92a5ec894df9ade371490e8d259158ab717a6 Mon Sep 17 00:00:00 2001 From: Ales Katona Date: Wed, 23 Jan 2019 14:56:23 -0700 Subject: [PATCH] keep lockfile accross CI steps --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c8d8b47..b5027c9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,6 +11,7 @@ lint: key: artifacts paths: - target + - Cargo.lock policy: push script: - cargo clippy --features backend_piston,backend_gilrs @@ -21,6 +22,7 @@ build: key: artifacts paths: - target + - Cargo.lock policy: pull script: - cargo build --verbose --features backend_piston,backend_gilrs @@ -31,6 +33,7 @@ test: key: artifacts paths: - target + - Cargo.lock policy: pull script: - cargo test --features backend_piston,backend_gilrs