Tune Travis configuration
Now that the jobs are running we can start fixing the little issuespull/432/head
parent
ea12b5af0b
commit
b02ab0a0ba
12
.travis.yml
12
.travis.yml
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue