2018-08-27 15:33:59 +02:00
#!/usr/bin/env bash
#
# Copyright (c) 2018 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
export LC_ALL = C.UTF-8
travis_retry docker pull " $DOCKER_NAME_TAG "
2018-11-23 15:38:08 +01:00
export TSAN_OPTIONS = " suppressions= ${ TRAVIS_BUILD_DIR } /test/sanitizer_suppressions/tsan "
export UBSAN_OPTIONS = " suppressions= ${ TRAVIS_BUILD_DIR } /test/sanitizer_suppressions/ubsan:print_stacktrace=1:halt_on_error=1 "
env | grep -E '^(CCACHE_|WINEDEBUG|LC_ALL|BOOST_TEST_RANDOM|CONFIG_SHELL|(TSAN|UBSAN)_OPTIONS)' | tee /tmp/env
2018-08-27 15:33:59 +02:00
if [ [ $HOST = *-mingw32 ] ] ; then
DOCKER_ADMIN = "--cap-add SYS_ADMIN"
2018-12-29 14:37:27 +01:00
elif [ [ $BITCOIN_CONFIG = *--with-sanitizers= *address* ] ] ; then # If ran with (ASan + LSan), Docker needs access to ptrace (https://github.com/google/sanitizers/issues/764)
DOCKER_ADMIN = "--cap-add SYS_PTRACE"
2018-08-27 15:33:59 +02:00
fi
DOCKER_ID = $( docker run $DOCKER_ADMIN -idt --mount type = bind,src= $TRAVIS_BUILD_DIR ,dst= $TRAVIS_BUILD_DIR --mount type = bind,src= $CCACHE_DIR ,dst= $CCACHE_DIR -w $TRAVIS_BUILD_DIR --env-file /tmp/env $DOCKER_NAME_TAG )
DOCKER_EXEC ( ) {
docker exec $DOCKER_ID bash -c " cd $PWD && $* "
}
travis_retry DOCKER_EXEC apt-get update
travis_retry DOCKER_EXEC apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES $DOCKER_PACKAGES