File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ echo "Setting default values in env"
11
11
BASE_ROOT_DIR=$( cd " $( dirname " ${BASH_SOURCE[0]} " ) " /../../ > /dev/null 2>&1 && pwd )
12
12
export BASE_ROOT_DIR
13
13
14
- export MAKEJOBS=${MAKEJOBS:- -j3}
14
+ # The number of parallel jobs to pass down to make and test_runner.py
15
+ export MAKEJOBS=${MAKEJOBS:- -j4}
16
+ # A folder for the ci system to put temporary files (ccache, datadirs for tests, ...)
17
+ export BASE_SCRATCH_DIR=${BASE_SCRATCH_DIR:- $BASE_ROOT_DIR / ci/ scratch/ }
15
18
export HOST=${HOST:- x86_64-unknown-linux-gnu}
16
19
export RUN_UNIT_TESTS=${RUN_UNIT_TESTS:- true}
17
20
export RUN_FUNCTIONAL_TESTS=${RUN_FUNCTIONAL_TESTS:- true}
Original file line number Diff line number Diff line change 16
16
17
17
if [ " $RUN_FUNCTIONAL_TESTS " = " true" ]; then
18
18
BEGIN_FOLD functional-tests
19
- DOCKER_EXEC test/functional/test_runner.py --ci --ansi --combinedlogslen=4000 ${TEST_RUNNER_EXTRA} --quiet --failfast
19
+ DOCKER_EXEC test/functional/test_runner.py --ci $MAKEJOBS --ansi --combinedlogslen=4000 ${TEST_RUNNER_EXTRA} --quiet --failfast
20
20
END_FOLD
21
21
fi
22
22
You can’t perform that action at this time.
0 commit comments