diff options
author | Jack Lloyd <[email protected]> | 2017-09-29 13:25:49 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-29 13:26:38 -0400 |
commit | 2919e00e5302381d3a9ba4e6a62952c0e544bdce (patch) | |
tree | 7713c9156d52800de02e5e3f284efbb0261bef1a | |
parent | 497fecf9d87c3c1df6e1e1db06dcf16754b08465 (diff) |
Remove sanitizer and mini-static builds from Travis
Sanitizer mode isn't testing anything extra vs the fuzzer tests which
also use the sanitizers.
Similarly mini-static is pretty well covered by the other minimized
build and the static build.
Will cut about 7-10 minutes from Travis build time.
-rw-r--r-- | src/scripts/ci/travis.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/scripts/ci/travis.yml b/src/scripts/ci/travis.yml index a26fc3989..3d2ec2499 100644 --- a/src/scripts/ci/travis.yml +++ b/src/scripts/ci/travis.yml @@ -24,12 +24,10 @@ env: - BUILD_MODE="docs" - BUILD_MODE="lint" - BUILD_MODE="mini-shared" - - BUILD_MODE="mini-static" - BUILD_MODE="shared" - BUILD_MODE="static" - BUILD_MODE="bsi" - BUILD_MODE="nist" - - BUILD_MODE="sanitizer" - BUILD_MODE="cross-ppc32" - BUILD_MODE="cross-ppc64" - BUILD_MODE="cross-arm32" @@ -66,16 +64,12 @@ matrix: - compiler: clang env: BUILD_MODE="sonar" - 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" - compiler: clang - env: BUILD_MODE="mini-static" - - compiler: clang env: BUILD_MODE="cross-win32" - compiler: clang env: BUILD_MODE="cross-ppc32" |