Tune Travis configuration

Now that the jobs are running we can start fixing the little issues
This commit is contained in:
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

View File

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