mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
19 lines
319 B
Bash
19 lines
319 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# This script is executed inside the builder image
|
||
|
|
||
|
set -e
|
||
|
|
||
|
source ./ci/matrix.sh
|
||
|
|
||
|
if [ "$RUN_TESTS" != "true" ]; then
|
||
|
echo "Skipping integration tests"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
export LD_LIBRARY_PATH=$BUILD_DIR/depends/$HOST/lib
|
||
|
|
||
|
cd build-ci/dashcore-$BUILD_TARGET
|
||
|
|
||
|
./qa/pull-tester/rpc-tests.py --coverage
|