From 7853c0251d3a057819770e0bb5cd8d30177faacb Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sat, 6 Jul 2019 12:05:38 -0600 Subject: [PATCH] Install stable toolchain for stable test --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 121885a..cda5aa6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,6 @@ cache: build:linux:stable: stage: build script: - - rustup update stable - cargo +stable build --verbose build:linux: @@ -26,7 +25,9 @@ test:linux:stable: stage: test dependencies: - build:linux:stable - script: cargo +stable test --verbose + script: + - rustup update stable + - cargo +stable test --verbose test:linux: stage: test