Disable incremental compilation in testing script.

With incremental compilation, compilation output disk usage grows to
almost 10GB. This prevent that from happening.
This commit is contained in:
Sergio Benitez 2018-01-23 18:49:59 -08:00
parent 5a9d857329
commit f0af77d917
1 changed files with 1 additions and 1 deletions

View File

@ -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 $@