From f8523db51d6cb86b3a4e6ebb1a4ad50675da019e Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Wed, 19 Jun 2019 23:21:10 -0700 Subject: [PATCH] Revert "remove build --all (#4737)" (#4745) This reverts commit 63503ad589919e5a8fcaffbb96fda7395e588fe2. --- ci/test-stable.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/test-stable.sh b/ci/test-stable.sh index ccc544878..035a26750 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -31,6 +31,8 @@ testName=$(basename "$0" .sh) case $testName in test-stable) echo "Executing $testName" + + _ cargo +"$rust_stable" build --all ${V:+--verbose} _ cargo +"$rust_stable" test --all ${V:+--verbose} -- --nocapture --test-threads=1 ;; test-stable-perf) @@ -73,6 +75,7 @@ test-stable-perf) fi # Run root package library tests + _ cargo +"$rust_stable" build --all ${V:+--verbose} --features="$ROOT_FEATURES" _ cargo +"$rust_stable" test --manifest-path=core/Cargo.toml ${V:+--verbose} --features="$ROOT_FEATURES" -- --nocapture --test-threads=1 ;; *)