Enable debug mode for Travis CI builds.

This commit is contained in:
Felix Geyer 2014-11-04 18:51:46 +01:00
parent 4b3a82592c
commit 57107ea560

View File

@ -12,7 +12,7 @@ install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install cmake qt libgcrypt; fi
before_script: mkdir build && pushd build
script:
- cmake -DWITH_GUI_TESTS=ON ..
- cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_GUI_TESTS=ON ..
- make
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then make test ARGS+="-E testgui"; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then xvfb-run -a --server-args="-screen 0 800x600x24" make test ARGS+="-R testgui"; fi