From 49d138de14074d40fb9223467434a5626782f51a Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Mon, 18 Apr 2022 21:15:03 -0700 Subject: [PATCH] Set 'RUSTC_BOOTSTRAP' to for '--no-run' on stable. This is used by the testing script to run compile-only tests. --- scripts/test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/test.sh b/scripts/test.sh index 0ee72fea..7f8607b0 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -8,6 +8,7 @@ source "${SCRIPT_DIR}/config.sh" # Add Cargo to PATH. export PATH=${HOME}/.cargo/bin:${PATH} export CARGO_INCREMENTAL=0 +export RUSTC_BOOTSTRAP=1 CARGO="cargo" # Checks that the versions for Cargo projects $@ all match