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
20 lines
471 B
Bash
Executable File
20 lines
471 B
Bash
Executable File
#!/bin/bash
|
|
set -e # fail on any error
|
|
set -u # treat unset variables as error
|
|
echo "________Running validate_chainspecs.sh________"
|
|
|
|
ERR=0
|
|
|
|
echo "________Validate chainspecs________"
|
|
time cargo build --release -p chainspec --verbose --color=always
|
|
|
|
for spec in ethcore/res/*.json; do
|
|
if ! ./target/release/chainspec "$spec"; then ERR=1; fi
|
|
done
|
|
|
|
for spec in ethcore/res/ethereum/*.json; do
|
|
if ! ./target/release/chainspec "$spec"; then ERR=1; fi
|
|
done
|
|
|
|
exit $ERR
|