From 3624fc011e29a5aed691973db95f045a61f65a2d Mon Sep 17 00:00:00 2001 From: Isaiah Norton Date: Wed, 4 Sep 2019 16:04:24 -0400 Subject: [PATCH] Use superbuild on travis to (hopefully) work around openssl cipher incompatibility PR #1376 (cherry picked from commit 7d23cd6f1b89dd314ac380a3b1863cc561df9921) --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 66d495c3268f..aafb9eb40488 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,9 @@ matrix: env: TILEDB_HDFS="ON" - os: linux - env: TILEDB_S3="ON" + env: + - TILEDB_S3="ON" + - TILEDB_SUPERBUILD="ON" - os: osx @@ -48,6 +50,9 @@ install: fi; if [[ "$TILEDB_TBB" == "OFF" ]]; then bootstrap_args="${bootstrap_args} --disable-tbb"; + fi; + if [[ "$TILEDB_SUPERBUILD" == "ON" ]]; then + bootstrap_args="${bootstrap_args} --force-build-all-deps"; fi # Start HDFS server if enabled