From 8a34e576bcc126e14dad75c23d4402f5ea875eca Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Tue, 18 Dec 2018 18:27:59 +0100 Subject: [PATCH] Add --frozen when running cargo --- test.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test.sh b/test.sh index 96908be7ed7..074171bfe73 100755 --- a/test.sh +++ b/test.sh @@ -35,9 +35,9 @@ validate () { if [ "$VALIDATE" -eq "1" ] then echo "________Validate build________" - time cargo check $@ --no-default-features - time cargo check $@ --manifest-path util/io/Cargo.toml --no-default-features - time cargo check $@ --manifest-path util/io/Cargo.toml --features "mio" + time cargo check $@ --frozen --no-default-features + time cargo check $@ --frozen --manifest-path util/io/Cargo.toml --no-default-features + time cargo check $@ --frozen --manifest-path util/io/Cargo.toml --features "mio" # Validate chainspecs echo "________Validate chainspecs________" @@ -71,7 +71,7 @@ cpp_test () { cargo_test () { echo "________Running Parity Full Test Suite________" git submodule update --init --recursive - time cargo test $OPTIONS --features "$FEATURES" --all $@ -- --test-threads $THREADS + time cargo test $OPTIONS --features "$FEATURES" --frozen --all $@ -- --test-threads $THREADS }