From f0af77d917875fc67555a6321905ea64f0692ca0 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Tue, 23 Jan 2018 18:49:59 -0800 Subject: [PATCH] Disable incremental compilation in testing script. With incremental compilation, compilation output disk usage grows to almost 10GB. This prevent that from happening. --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 5620e712..b22681a4 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -83,4 +83,4 @@ echo ":: Bootstrapping examples..." bootstrap_examples echo ":: Building and testing libraries..." -cargo test --all-features --all $@ +CARGO_INCREMENTAL=0 cargo test --all-features --all $@