diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-05-18 13:58:23 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-05-18 20:38:56 -0400 |
commit | faf552117efdd456fb17b1d9490896de3b7d67a4 (patch) | |
tree | d7d105707a42d799684d3cc6ff5c7ce84b5f9852 /.travis.yml | |
parent | fa006caa136f05a18428c792802523637d2234ca (diff) |
ci: Set DEBIAN_FRONTEND=noninteractive
Also fix travis environment variables for this build
Previously the resulting env was:
FILE_ENV="./ci/test/00_setup_env_native_tsan.sh" TEST_RUNNER_EXTRA="--exclude feature_block" #= Not= enough= memory= on= travis= machines=
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 26eaf5e6b6..4acfe4db76 100644 --- a/.travis.yml +++ b/.travis.yml @@ -113,9 +113,10 @@ jobs: - stage: test name: 'x86_64 Linux [GOAL: install] [bionic] [no depends, only system libs, sanitizers: thread (TSan), no wallet]' + # Not enough memory on travis machines, so feature_block is excluded for now env: >- + TEST_RUNNER_EXTRA="--exclude feature_block" FILE_ENV="./ci/test/00_setup_env_native_tsan.sh" - TEST_RUNNER_EXTRA="--exclude feature_block" # Not enough memory on travis machines - stage: test name: 'x86_64 Linux [GOAL: install] [bionic] [no depends, only system libs, sanitizers: address/leak (ASan + LSan) + undefined (UBSan) + integer]' |