diff options
| author | MarcoFalke <[email protected]> | 2019-12-04 11:21:32 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-12-04 12:16:52 -0500 |
| commit | fa40e48c50d8ccf42ce5e66c12390e2ed4b60e75 (patch) | |
| tree | 02e491ac3cceb07a99b1350389d1dba991bc36bd /ci/test/00_setup_env.sh | |
| parent | ci: ubsan report_error_type=1 and add suppressions (diff) | |
| download | discoin-fa40e48c50d8ccf42ce5e66c12390e2ed4b60e75.tar.xz discoin-fa40e48c50d8ccf42ce5e66c12390e2ed4b60e75.zip | |
ci: Remove unparseable lines from supp file for old xenial clang tsan
Diffstat (limited to 'ci/test/00_setup_env.sh')
| -rwxr-xr-x | ci/test/00_setup_env.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ci/test/00_setup_env.sh b/ci/test/00_setup_env.sh index 6040804a9..1f485fbec 100755 --- a/ci/test/00_setup_env.sh +++ b/ci/test/00_setup_env.sh @@ -6,6 +6,12 @@ export LC_ALL=C.UTF-8 +# The root dir. +# The ci system copies this folder. +# This is where the build is done (depends and dist). +BASE_ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )"/../../ >/dev/null 2>&1 && pwd ) +export BASE_ROOT_DIR + echo "Setting specific values in env" if [ -n "${FILE_ENV}" ]; then set -o errexit; @@ -13,12 +19,6 @@ if [ -n "${FILE_ENV}" ]; then source "${FILE_ENV}" fi -# The root dir. -# The ci system copies this folder. -# This is where the build is done (depends and dist). -BASE_ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )"/../../ >/dev/null 2>&1 && pwd ) -export BASE_ROOT_DIR - echo "Fallback to default values in env (if not yet set)" # The number of parallel jobs to pass down to make and test_runner.py export MAKEJOBS=${MAKEJOBS:--j4} |