Append to build logs instead of truncating

This commit is contained in:
Praveen Palanisamy 2018-11-09 10:41:34 -05:00
parent 6e0c0c808f
commit d1c2a03dcf
1 changed files with 3 additions and 3 deletions

View File

@ -30,9 +30,9 @@ matrix:
- pip3 install -q --user setuptools nose2 - pip3 install -q --user setuptools nose2
script: script:
- while sleep 2m; do echo "still building..."; done & - while sleep 2m; do echo "still building..."; done &
- make setup > build.log 2>&1 - make setup >> build.log 2>&1
- make LibCarla > build.log 2>&1 - make LibCarla >> build.log 2>&1
- make PythonAPI > build.log 2>&1 - make PythonAPI >> build.log 2>&1
- kill %1 - kill %1
- make check ARGS="--all --gtest_args=--gtest_filter=-*_mt" - make check ARGS="--all --gtest_args=--gtest_filter=-*_mt"
after_failure: after_failure: