ci: update Travis configuration
* Add testing on arm64, ppc64le, and s390x with select compiler versions
* Allow disabling the headers check by setting DISABLE_HEADERS_CHECK
* Drop all versions of gcc < 7 and clang < 5
* Add clang 11 (development branch)
* Reenable ASan on Linux with gcc 9 and clang 7, the upstream
bugs have been fixed; ASan on clang 8 remains disabled
* Drop Xcode 9.2 (macOS 10.12 is no longer supported)
* Upgrade Xcode 11 to 11.3
* Remove USE_OPENSSL_1_1 and always build with openssl 1.1.1,
since that's the only version available on Homebrew now
* Workaround issue with missing /usr/local/opt/openssl on macOS
* Various cleanups
Change-Id: I90e7d61d176b60c1e6b90d2374a7a51dd1deabb3
diff --git a/.jenkins.d/10-build.sh b/.jenkins.d/10-build.sh
index 66ec27f..3d2e3bb 100755
--- a/.jenkins.d/10-build.sh
+++ b/.jenkins.d/10-build.sh
@@ -16,35 +16,31 @@
elif [[ -z $DISABLE_ASAN ]]; then
ASAN="--with-sanitizer=address"
fi
-if [[ -n $USE_OPENSSL_1_1 ]] && has OSX $NODE_LABELS; then
- OPENSSL="--with-openssl=/usr/local/opt/openssl@1.1"
-fi
# Cleanup
sudo_preserve_env PATH -- ./waf --color=yes distclean
if [[ $JOB_NAME != *"code-coverage" && $JOB_NAME != *"limited-build" ]]; then
- # Configure/build static library in optimized mode with tests
- ./waf --color=yes configure --enable-static --disable-shared --with-tests $OPENSSL
- ./waf --color=yes build -j${WAF_JOBS:-1}
+ # Build static library in release mode with tests and without precompiled headers
+ ./waf --color=yes configure --enable-static --disable-shared --with-tests --without-pch
+ ./waf --color=yes build -j${WAF_JOBS:-1}
- # Cleanup
- sudo_preserve_env PATH -- ./waf --color=yes distclean
+ # Cleanup
+ sudo_preserve_env PATH -- ./waf --color=yes distclean
- # Configure/build static and shared library in optimized mode without tests
- ./waf --color=yes configure --enable-static --enable-shared $OPENSSL
- ./waf --color=yes build -j${WAF_JOBS:-1}
+ # Build static and shared library in release mode without tests
+ ./waf --color=yes configure --enable-static --enable-shared
+ ./waf --color=yes build -j${WAF_JOBS:-1}
- # Cleanup
- sudo_preserve_env PATH -- ./waf --color=yes distclean
+ # Cleanup
+ sudo_preserve_env PATH -- ./waf --color=yes distclean
fi
-# Configure/build shared library in debug mode with tests/examples and without precompiled headers
-./waf --color=yes configure --disable-static --enable-shared --debug --with-tests \
- --with-examples --without-pch $ASAN $COVERAGE $OPENSSL
+# Build shared library in debug mode with tests and examples
+./waf --color=yes configure --disable-static --enable-shared --debug --with-tests --with-examples $ASAN $COVERAGE
./waf --color=yes build -j${WAF_JOBS:-1}
-# (tests will be run against debug version)
+# (tests will be run against the debug version)
# Install
sudo_preserve_env PATH -- ./waf --color=yes install