6fcd775d48
* check if it was the file * collect tog files * some debug * some more debug * some even more debug * upload all the logs * change cache max size * test with max cache size overflow * verbose for all cargo jobs * lower max cache size * Rust nightly and beta test runs reintroduced * artifacts:when: always, coz on_success is default * sccache full log * normal artifacts name, big cache size * add file to test the compilation again * another way of getting artifacts * per-job cache * data race tests * is it needed to clean the working folder? * return to common cache dir * do not pass logs between jobs * typo * avoid artifacts conflict * colored logs * always colored logs * proper stages * more proper stages skip-ci * more proper stages [skip-ci] * shouldn't skip ci
18 lines
511 B
Bash
Executable File
18 lines
511 B
Bash
Executable File
#!/bin/bash
|
|
# ARGUMENT $1 Rust flavor to run test with (stable/beta/nightly)
|
|
|
|
echo "________Running test-linux.sh________"
|
|
set -e # fail on any error
|
|
set -u # treat unset variables as error
|
|
|
|
FEATURES="json-tests,ci-skip-tests"
|
|
OPTIONS="--release"
|
|
#use nproc `linux only
|
|
THREADS=$(nproc)
|
|
|
|
rustup default $1
|
|
rustup show
|
|
|
|
echo "________Running Parity Full Test Suite________"
|
|
time cargo test $OPTIONS --features "$FEATURES" --locked --all --target $CARGO_TARGET --verbose --color=always -- --test-threads $THREADS
|