* version: bump stable to 2.2.10 * import rpc transactions sequentially (#10051) * import rpc transactions sequentially * use impl trait in argument position, renamed ProspectiveDispatcher to WithPostSign * grouped imports * integrates PostSign with ProspectiveSigner * fix spaces, removed unnecessary type cast and duplicate polling * clean up code style * Apply suggestions from code review * Additional tests for uint deserialization. (#10279) * Don't run the CPP example on CI (#10285) * Don't run the CPP example on CI * Add comment * CI optimizations (#10297) * CI optimizations * fix stripping * new dockerfile * no need n submodule upd * review * moved dockerfile * it becomes large * onchain update depends on s3 * fix dependency * fix cache status * fix cache status * new cache status * fix publish job (#10317) * fix publish job * dashes and colonels * Add Statetest support for Constantinople Fix (#10323) * Update Ethereum tests repo to v6.0.0-beta.3 tag * Add spec for St.Peter's / ConstantinopleFix statetests * fix(add helper for timestamp overflows) (#10330) * fix(add helper timestamp overflows) * fix(simplify code) * fix(make helper private) * fix(docker): fix not receives SIGINT (#10059) * fix(docker): fix not receives SIGINT * fix: update with reviews * update with review * update * update * snap: official image / test (#10168) * official image / test * fix / test * bit more necromancy * fix paths * add source bin/df /test * add source bin/df /test2 * something w paths /test * something w paths /test * add source-type /test * show paths /test * copy plugin /test * plugin -> nil * install rhash * no questions while installing rhash * publish snap only for release * Don't add discovery initiators to the node table (#10305) * Don't add discovery initiators to the node table * Use enums for tracking state of the nodes in discovery * Dont try to ping ourselves * Fix minor nits * Update timeouts when observing an outdated node * Extracted update_bucket_record from update_node * Fixed typo * Fix two final nits from @todr * change docker image based on debian instead of ubuntu due to the chan… (#10336) * change docker image based on debian instead of ubuntu due to the changes of the build container * role back docker build image and docker deploy image to ubuntu:xenial based (#10338) * perform stripping during build (#10208) * perform stripping during build (#10208) * perform stripping during build * var RUSTFLAGS * fix(docker-aarch64) : cross-compile config (#9798) * fix(docker-aarch64) : cross-compile config (#9798) * ci: remove trailing double newline from dockerfile
79 lines
1.6 KiB
Bash
Executable File
79 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
# Running Parity Full Test Suite
|
|
echo "________Running test.sh________"
|
|
|
|
FEATURES="json-tests,ci-skip-issue"
|
|
OPTIONS="--release"
|
|
VALIDATE=1
|
|
THREADS=8
|
|
|
|
set -e
|
|
|
|
|
|
validate () {
|
|
if [ "$VALIDATE" -eq "1" ]
|
|
then
|
|
echo "________Validate build________"
|
|
time cargo check $@ --locked --no-default-features
|
|
time cargo check $@ --locked --manifest-path util/io/Cargo.toml --no-default-features
|
|
time cargo check $@ --locked --manifest-path util/io/Cargo.toml --features "mio"
|
|
|
|
# Validate chainspecs
|
|
echo "________Validate chainspecs________"
|
|
time ./scripts/validate_chainspecs.sh
|
|
else
|
|
echo "# not validating due to \$VALIDATE!=1"
|
|
fi
|
|
}
|
|
|
|
cpp_test () {
|
|
case $CARGO_TARGET in
|
|
(x86_64-unknown-linux-gnu)
|
|
# Running the C++ example
|
|
echo "________Running the C++ example________"
|
|
cd parity-clib-examples/cpp && \
|
|
mkdir -p build && \
|
|
cd build && \
|
|
cmake .. && \
|
|
make -j $THREADS && \
|
|
cd .. && \
|
|
rm -rf build && \
|
|
cd ../..
|
|
;;
|
|
(*)
|
|
echo "________Skipping the C++ example________"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
cargo_test () {
|
|
echo "________Running Parity Full Test Suite________"
|
|
git submodule update --init --recursive
|
|
time cargo test $OPTIONS --features "$FEATURES" --locked --all $@ -- --test-threads $THREADS
|
|
}
|
|
|
|
|
|
if [ "$CARGO_TARGET" ]
|
|
then
|
|
validate --target $CARGO_TARGET
|
|
else
|
|
validate
|
|
fi
|
|
|
|
test "${RUN_TESTS}" = "all" && cpp_test
|
|
|
|
if [ "$CARGO_TARGET" ]
|
|
then
|
|
|
|
case "${RUN_TESTS}" in
|
|
(cargo|all)
|
|
cargo_test --target $CARGO_TARGET $@
|
|
;;
|
|
('')
|
|
cargo_test --no-run --target $CARGO_TARGET $@
|
|
;;
|
|
esac
|
|
else
|
|
cargo_test $@
|
|
fi
|