Skip to content

Commit fadd76a

Browse files
author
MarcoFalke
committed
ci: Remove TRAVIS env vars
1 parent fa449b8 commit fadd76a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

ci/test/00_setup_env.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,16 @@ export RUN_UNIT_TESTS=${RUN_UNIT_TESTS:-true}
2626
export RUN_FUNCTIONAL_TESTS=${RUN_FUNCTIONAL_TESTS:-true}
2727
export RUN_FUZZ_TESTS=${RUN_FUZZ_TESTS:-false}
2828
export DOCKER_NAME_TAG=${DOCKER_NAME_TAG:-ubuntu:18.04}
29-
export BOOST_TEST_RANDOM=${BOOST_TEST_RANDOM:-1$TRAVIS_BUILD_ID}
29+
# Randomize test order.
30+
# See https://www.boost.org/doc/libs/1_71_0/libs/test/doc/html/boost_test/utf_reference/rt_param_reference/random.html
31+
export BOOST_TEST_RANDOM=${BOOST_TEST_RANDOM:-1}
3032
export CCACHE_SIZE=${CCACHE_SIZE:-100M}
3133
export CCACHE_TEMPDIR=${CCACHE_TEMPDIR:-/tmp/.ccache-temp}
3234
export CCACHE_COMPRESS=${CCACHE_COMPRESS:-1}
3335
export CCACHE_DIR=${CCACHE_DIR:-$BASE_SCRATCH_DIR/.ccache}
34-
export BASE_BUILD_DIR=${BASE_BUILD_DIR:-${TRAVIS_BUILD_DIR:-$BASE_ROOT_DIR}}
36+
# Folder where the build is done (depends and dist). Can not be changed and is equal to the root of the git repo
37+
export BASE_BUILD_DIR=${BASE_BUILD_DIR:-$BASE_ROOT_DIR}
38+
# Folder where the build is done (bin and lib). Can not be changed.
3539
export BASE_OUTDIR=${BASE_OUTDIR:-$BASE_BUILD_DIR/out/$HOST}
3640
export SDK_URL=${SDK_URL:-https://bitcoincore.org/depends-sources/sdks}
3741
export WINEDEBUG=${WINEDEBUG:-fixme-all}

0 commit comments

Comments
 (0)