parent
37cd5bcf7b
commit
3c504b3401
|
|
@ -26,13 +26,14 @@ env:
|
||||||
- BUILD_MODE="no-asm"
|
- BUILD_MODE="no-asm"
|
||||||
- BUILD_MODE="asan"
|
- BUILD_MODE="asan"
|
||||||
- BUILD_MODE="ubsan"
|
- BUILD_MODE="ubsan"
|
||||||
|
- BUILD_MODE="coverage"
|
||||||
|
|
||||||
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 are very slow.
|
# The sanitizer builds under Clang run slowly
|
||||||
- compiler: clang
|
- compiler: clang
|
||||||
env: BUILD_MODE="asan"
|
env: BUILD_MODE="asan"
|
||||||
- compiler: clang
|
- compiler: clang
|
||||||
|
|
@ -41,6 +42,9 @@ env:
|
||||||
script:
|
script:
|
||||||
- make "$BUILD_MODE" && ./cryptest.exe v && ./cryptest.exe tv all
|
- make "$BUILD_MODE" && ./cryptest.exe v && ./cryptest.exe tv all
|
||||||
|
|
||||||
|
after_success:
|
||||||
|
- if [[ "$BUILD_MODE" = "coverage" ]]; then bash <(curl -s https://codecov.io/bash) fi;
|
||||||
|
|
||||||
# whitelist branches to avoid testing feature branches twice
|
# whitelist branches to avoid testing feature branches twice
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue