Update gitlab-test.sh (#7883)

* Update gitlab-test.sh

https://github.com/paritytech/parity/issues/7871

* Update aura-test.sh
This commit is contained in:
Denis S. Soldatov aka General-Beck 2018-02-13 18:21:24 +03:00 committed by 5chdn
parent a47623d3dc
commit 5e3e50c420
No known key found for this signature in database
GPG Key ID: 1A40871B597F5F80
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,7 @@
#!/bin/bash
set -e # fail on any error
set -u # treat unset variables as error
cargo build -j $(nproc) --release --features final $CARGOFLAGS
git clone https://github.com/paritytech/parity-import-tests
cp target/release/parity parity-import-tests/aura/parity

View File

@ -23,10 +23,10 @@ rust_test () {
rustup show
if [[ "${RUST_FILES_MODIFIED}" == "0" ]];
then echo "Skipping Rust tests since no Rust files modified.";
else ./test.sh;
else ./test.sh || exit $?;
fi
if [[ "$CI_COMMIT_REF_NAME" == "nightly" ]];
then sh scripts/aura-test.sh;
then sh scripts/aura-test.sh || exit $?;
fi
}
js_test () {