From 2cbf287998c72a27136820596ed5b8b6810dea64 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Tue, 10 Dec 2019 00:39:13 +0100 Subject: [PATCH] don't cargo-update on CI jobs but use the Cargo.lock file we manually maintain/update --- .circleci/config.yml | 2 -- appveyor.yml | 1 - 2 files changed, 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 82d3fd361..e4704159b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -49,7 +49,6 @@ jobs: - run: rustup default $(cat rust-toolchain) - run: rustup component add --toolchain $(cat rust-toolchain) rustfmt - run: rustup component add --toolchain $(cat rust-toolchain) clippy-preview - - run: cargo update - run: cargo fetch - run: rustc +stable --version - run: rustc +$(cat rust-toolchain) --version @@ -91,7 +90,6 @@ jobs: curl https://sh.rustup.rs -sSf | sh -s -- -y - run: rustup install $(cat rust-toolchain) - run: rustup default $(cat rust-toolchain) - - run: cargo update - run: cargo fetch - run: name: Test diff --git a/appveyor.yml b/appveyor.yml index 132892d49..7276acac1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,7 +8,6 @@ install: - set PATH=%PATH%;%USERPROFILE%\.cargo\bin - rustc -vV - cargo -vV - - cargo update build: false