diff options
author | Jack Lloyd <[email protected]> | 2017-08-29 11:51:24 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-08-29 11:51:24 -0400 |
commit | 56abdb87f1f333e4ef2072cae37d2bd0037bad2a (patch) | |
tree | 171d5b66597cc493208d4b008ba5d91667e52910 | |
parent | e8e5983e292f28b0de3595a17fb89e999934e413 (diff) |
Travis: skip static build on Clang
This isn't really testing anything additional, and eliminates one
of the (slow) OS X builds.
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 92dcf75a4..93daacb9b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,13 +51,14 @@ matrix: - os: osx compiler: gcc - # Run docs, lint, bsi, nist, fuzzers, coverage, valgrind, sonar, sanitizer, - # minimized and non-ARM cross builds on Linux/gcc only. - + # Run static, docs, lint, bsi, nist, fuzzers, coverage, valgrind, + # sonar, sanitizer, minimized and non-ARM cross builds only on Linux/gcc. # The sanitizer builds under Clang run the tests very slowly and # cause CI timeouts. - compiler: clang + env: BUILD_MODE="static" + - compiler: clang env: BUILD_MODE="bsi" - compiler: clang env: BUILD_MODE="nist" |