diff options
author | Jack Lloyd <[email protected]> | 2017-07-31 15:13:15 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-08-25 17:36:51 -0400 |
commit | 3baa546d70bcd078b23be07069d755a5f130fb0f (patch) | |
tree | d626d73fdf845987e2d1783e8493593501378a07 /.travis.yml | |
parent | 41e1e7cbc1e4e864ad5d15dd0c09227b04940a91 (diff) |
Create new fuzzer build mode
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index d7092f01a..8431729b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,6 +31,7 @@ env: - BUILD_MODE="static" - BUILD_MODE="bsi" - BUILD_MODE="nist" + - BUILD_MODE="fuzzers" - BUILD_MODE="sanitizer" - BUILD_MODE="coverage" - BUILD_MODE="cross-arm32" @@ -52,10 +53,11 @@ matrix: - os: osx compiler: gcc - # Run docs, lint, bsi, nist, coverage, valgrind, sonarqube, sanitizer, - # minimized and non-ARM cross builds on Linux/gcc only. The - # sanitizer builds under Clang run the tests very slowly and cause - # CI timeouts. + # Run docs, lint, bsi, nist, fuzzers, coverage, valgrind, sonarqube, sanitizer, + # minimized and non-ARM cross builds on Linux/gcc only. + + # The sanitizer builds under Clang run the tests very slowly and + # cause CI timeouts. - compiler: clang env: BUILD_MODE="bsi" @@ -72,6 +74,8 @@ matrix: - compiler: clang env: BUILD_MODE="sanitizer" - compiler: clang + env: BUILD_MODE="fuzzers" + - compiler: clang env: BUILD_MODE="valgrind" - compiler: clang env: BUILD_MODE="mini-shared" |