summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-05-28 17:00:09 -0400
committerJeffrey Walton <noloader@gmail.com>2017-05-28 17:00:09 -0400
commit0df38c3506efbe8aac5ce7a695c01d487348dcc1 (patch)
treea2b8b1242afecf84adf7f605943a758f32a4fa29 /.travis.yml
parent81c751314b266c0ae3944e6125f05d244915defe (diff)
downloadcryptopp-git-0df38c3506efbe8aac5ce7a695c01d487348dcc1.tar.gz
Fix build timeout due to tracking vars under UBsan
Also see https://stackoverflow.com/q/2954473/608639 and https://stackoverflow.com/q/708807/608639
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 73036cf3..153e3422 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,6 +29,7 @@ env:
- BUILD_MODE="codecov"
matrix:
+
exclude:
# Skip GCC on OS X entirely
- os: osx
@@ -43,7 +44,7 @@ matrix:
- env: BUILD_MODE="asan"
script:
- - travis_wait 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") && ("$CC" = "gcc") ) ]]; then CODECOV_TOKEN="5c7bc59c-e95f-4594-82c3-33e7a1942592" bash <(curl -s https://codecov.io/bash); fi;