From 59af44cdb272bb22351ec7b78654f8eb6586f354 Mon Sep 17 00:00:00 2001 From: Tarik Eshaq Date: Thu, 8 Feb 2024 15:29:32 -0500 Subject: [PATCH] Adds --locked to cargo install in CI --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 92ae4e0d..1a67d4e1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ commands: name: Setup Rust checks command: | rustup component add rustfmt - cargo install cargo-audit + cargo install --locked cargo-audit rustup component add clippy setup-python: steps: @@ -140,7 +140,7 @@ commands: - run: name: Install sccache command: | - cargo install sccache + cargo install --locked sccache # This configures Rust to use sccache. echo 'export "RUSTC_WRAPPER"="sccache"' >> $BASH_ENV # This is the maximum space sccache cache will use on disk.