Tune Travis configuration

Now that the jobs are running we can start fixing the little issues
pull/432/head
Jeffrey Walton 2017-05-27 00:41:58 -04:00
parent ea12b5af0b
commit b02ab0a0ba
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 3 additions and 9 deletions

View File

@ -22,30 +22,24 @@ env:
- BUILD_JOBS=2 - BUILD_JOBS=2
matrix: matrix:
- BUILD_MODE="shared" - BUILD_MODE="all"
- BUILD_MODE="static"
- BUILD_MODE="no-asm" - BUILD_MODE="no-asm"
- BUILD_MODE="asan" - BUILD_MODE="asan"
- BUILD_MODE="ubsan" - BUILD_MODE="ubsan"
- BUILD_MODE="valgrind"
exclude: exclude:
# Skip GCC on OS X entirely # Skip GCC on OS X entirely
- os: osx - os: osx
compiler: gcc compiler: gcc
# The sanitizer builds under Clang run the tests very # The sanitizer builds under Clang are very slow.
# slowly and cause CI timeouts.
- compiler: clang - compiler: clang
env: BUILD_MODE="asan" env: BUILD_MODE="asan"
- compiler: clang - compiler: clang
env: BUILD_MODE="ubsan" env: BUILD_MODE="ubsan"
- compiler: clang
env: BUILD_MODE="valgrind"
script: script:
- make clean &>/dev/null && make - make "$BUILD_MODE" && ./cryptest.exe v && ./cryptest.exe tv all
- ./cryptest.exe v && ./cryptest.exe tv all
# whitelist branches to avoid testing feature branches twice # whitelist branches to avoid testing feature branches twice
branches: branches: