bd3bc5c168
* Updating the CI system with the publication of releases and binary files on github Signed-off-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com> * add missed scripts * chmod +x scripts * fix download link for github * rebuilding CI scripts * small fixes * update submodule wasm tests * ci: fix merge leftovers * ci: remove gitlab-next from ci triggers * ci: fix git add in docs script * ci: use nightly instead of master for publish triggers * ci: remove sleep from gitlab config * ci: replace ':' with '-' in gitlab targets * ci: fix recursive copy in docs script
61 lines
1.2 KiB
Bash
Executable File
61 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
# Running Parity Full Test Suite
|
|
|
|
FEATURES="json-tests"
|
|
OPTIONS="--release"
|
|
VALIDATE=1
|
|
|
|
case $1 in
|
|
--no-json)
|
|
FEATURES="ipc"
|
|
shift # past argument=value
|
|
;;
|
|
--no-release)
|
|
OPTIONS=""
|
|
shift
|
|
;;
|
|
--no-validate)
|
|
VALIDATE=0
|
|
shift
|
|
;;
|
|
--no-run)
|
|
OPTIONS="--no-run"
|
|
shift
|
|
;;
|
|
*)
|
|
# unknown option
|
|
;;
|
|
esac
|
|
|
|
set -e
|
|
|
|
if [ "$VALIDATE" -eq "1" ]; then
|
|
# Validate --no-default-features build
|
|
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"
|
|
|
|
# Validate chainspecs
|
|
echo "________Validate chainspecs________"
|
|
time ./scripts/validate_chainspecs.sh
|
|
fi
|
|
|
|
|
|
# Running the C++ example
|
|
echo "________Running the C++ example________"
|
|
cd parity-clib-examples/cpp && \
|
|
mkdir -p build && \
|
|
cd build && \
|
|
cmake .. && \
|
|
make && \
|
|
./parity-example && \
|
|
cd .. && \
|
|
rm -rf build && \
|
|
cd ../..
|
|
|
|
# Running tests
|
|
echo "________Running Parity Full Test Suite________"
|
|
git submodule update --init --recursive
|
|
time cargo test $OPTIONS --features "$FEATURES" --all $1 -- --test-threads 8
|