diff options
author | Christian Fetzer <fetzer.ch@gmail.com> | 2016-02-16 08:12:23 +0100 |
---|---|---|
committer | Christian Fetzer <fetzer.ch@gmail.com> | 2016-02-20 09:04:32 +0100 |
commit | 21d16133084060df1c5113dd51c9263f1e0ac4b3 (patch) | |
tree | 7e346bfcf6e9e803adb45b3f3c1101d0f4ff3618 /.travis.yml | |
parent | cdcee3469be362808e298efde302228c6f12e6d1 (diff) |
[travis] Explicitly build with debug flags
It's useful to have asserts enabled when running the test suites.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 3c2da75d00..ff921bf799 100644 --- a/.travis.yml +++ b/.travis.yml @@ -96,9 +96,9 @@ before_script: fi - if [[ "$TRAVIS_OS_NAME" == "linux" && "$BUILD" == "Kodi" && "$CXX" == "g++" ]]; then if [[ "$TOOLS" == "Autotools" ]]; then - ./configure; + ./configure --enable-debug; elif [[ "$TOOLS" == "CMake" ]]; then - cmake ../project/cmake; + cmake -DCMAKE_BUILD_TYPE=Debug ../project/cmake; fi fi - if [[ "$TRAVIS_OS_NAME" == "linux" && "$BUILD" == "Kodi" && "$CXX" == "clang++" ]]; then |