File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 33
33
directories :
34
34
- $TRAVIS_BUILD_DIR/depends/built
35
35
- $TRAVIS_BUILD_DIR/depends/sdk-sources
36
- - $HOME /.ccache
36
+ - $TRAVIS_BUILD_DIR/ci/scratch /.ccache
37
37
stages :
38
38
- lint
39
39
- test
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export BOOST_TEST_RANDOM=${BOOST_TEST_RANDOM:-1$TRAVIS_BUILD_ID}
24
24
export CCACHE_SIZE=${CCACHE_SIZE:- 100M}
25
25
export CCACHE_TEMPDIR=${CCACHE_TEMPDIR:-/ tmp/ .ccache-temp}
26
26
export CCACHE_COMPRESS=${CCACHE_COMPRESS:- 1}
27
- export CCACHE_DIR=${CCACHE_DIR:- $HOME / .ccache}
27
+ export CCACHE_DIR=${CCACHE_DIR:- $BASE_SCRATCH_DIR / .ccache}
28
28
export BASE_BUILD_DIR=${BASE_BUILD_DIR:- ${TRAVIS_BUILD_DIR:- $BASE_ROOT_DIR } }
29
29
export BASE_OUTDIR=${BASE_OUTDIR:- $BASE_BUILD_DIR / out/ $HOST }
30
30
export SDK_URL=${SDK_URL:- https:// bitcoincore.org/ depends-sources/ sdks}
Original file line number Diff line number Diff line change 6
6
7
7
export LC_ALL=C.UTF-8
8
8
9
+ mkdir -p " ${BASE_SCRATCH_DIR} "
9
10
ccache echo " Creating ccache dir if it didn't already exist"
10
11
11
12
if [ ! -d ${DIR_QA_ASSETS} ]; then
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 $MAKEJOBS --ansi --combinedlogslen=4000 ${TEST_RUNNER_EXTRA} --quiet --failfast
19
+ DOCKER_EXEC test/functional/test_runner.py --ci $MAKEJOBS --tmpdirprefix " ${BASE_SCRATCH_DIR} /test_runner/ " -- 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