diff options
| author | MarcoFalke <[email protected]> | 2019-08-27 15:44:57 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-08-27 15:58:49 -0400 |
| commit | fa60583d23653ca02c8071934a35964bd31fcc2b (patch) | |
| tree | 9bf18821a956260c9828f278d6be5adf522793fe /ci/test/00_setup_env.sh | |
| parent | Merge #16728: move-only: move coins statistics utils out of RPC (diff) | |
| download | discoin-fa60583d23653ca02c8071934a35964bd31fcc2b.tar.xz discoin-fa60583d23653ca02c8071934a35964bd31fcc2b.zip | |
ci: Pass down $MAKEJOBS to test_runner.py
Diffstat (limited to 'ci/test/00_setup_env.sh')
| -rwxr-xr-x | ci/test/00_setup_env.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/test/00_setup_env.sh b/ci/test/00_setup_env.sh index 09b37f824..7ce512b83 100755 --- a/ci/test/00_setup_env.sh +++ b/ci/test/00_setup_env.sh @@ -11,7 +11,10 @@ echo "Setting default values in env" BASE_ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )"/../../ >/dev/null 2>&1 && pwd ) export BASE_ROOT_DIR -export MAKEJOBS=${MAKEJOBS:--j3} +# The number of parallel jobs to pass down to make and test_runner.py +export MAKEJOBS=${MAKEJOBS:--j4} +# A folder for the ci system to put temporary files (ccache, datadirs for tests, ...) +export BASE_SCRATCH_DIR=${BASE_SCRATCH_DIR:-$BASE_ROOT_DIR/ci/scratch/} export HOST=${HOST:-x86_64-unknown-linux-gnu} export RUN_UNIT_TESTS=${RUN_UNIT_TESTS:-true} export RUN_FUNCTIONAL_TESTS=${RUN_FUNCTIONAL_TESTS:-true} |