Revert "remove build --all (#4737)" (#4745)

This reverts commit 63503ad589.
This commit is contained in:
Rob Walker
2019-06-19 23:21:10 -07:00
committed by GitHub
parent 48b11d1841
commit f8523db51d

View File

@ -31,6 +31,8 @@ testName=$(basename "$0" .sh)
case $testName in case $testName in
test-stable) test-stable)
echo "Executing $testName" echo "Executing $testName"
_ cargo +"$rust_stable" build --all ${V:+--verbose}
_ cargo +"$rust_stable" test --all ${V:+--verbose} -- --nocapture --test-threads=1 _ cargo +"$rust_stable" test --all ${V:+--verbose} -- --nocapture --test-threads=1
;; ;;
test-stable-perf) test-stable-perf)
@ -73,6 +75,7 @@ test-stable-perf)
fi fi
# Run root package library tests # 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 _ cargo +"$rust_stable" test --manifest-path=core/Cargo.toml ${V:+--verbose} --features="$ROOT_FEATURES" -- --nocapture --test-threads=1
;; ;;
*) *)