diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f842a30fcbdb..60a5e98c8d78 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -49,7 +49,6 @@ stages: linux_asan: imageName: 'ubuntu-16.04' TILEDB_CI_ASAN: ON - TILEDB_TBB: OFF TILEDB_SERIALIZATION: ON CXX: g++-7 linux_serialization: diff --git a/bootstrap b/bootstrap index ee4335dfc0f4..9f1c6517bf55 100755 --- a/bootstrap +++ b/bootstrap @@ -89,7 +89,7 @@ tiledb_werror="ON" tiledb_tests="ON" tiledb_cpp_api="ON" tiledb_force_all_deps="OFF" -tiledb_tbb="ON" +tiledb_tbb="OFF" tiledb_stats="ON" tiledb_static="OFF" tiledb_disable_avx2="" diff --git a/scripts/azure-linux_mac-release.yml b/scripts/azure-linux_mac-release.yml index 1a62b4bb25b7..cd70da9196be 100755 --- a/scripts/azure-linux_mac-release.yml +++ b/scripts/azure-linux_mac-release.yml @@ -68,8 +68,8 @@ steps: if [[ "$TILEDB_GCS" == "ON" ]]; then bootstrap_args="${bootstrap_args} --enable-gcs"; fi; - if [[ "$TILEDB_TBB" == "OFF" ]]; then - bootstrap_args="${bootstrap_args} --disable-tbb"; + if [[ "$TILEDB_TBB" == "ON" ]]; then + bootstrap_args="${bootstrap_args} --enable-tbb"; fi if [[ "$TILEDB_TOOLS" == "ON" ]]; then bootstrap_args="${bootstrap_args} --enable-tools"; diff --git a/scripts/azure-linux_mac.yml b/scripts/azure-linux_mac.yml index ab91646d7995..2c08b375e8ee 100755 --- a/scripts/azure-linux_mac.yml +++ b/scripts/azure-linux_mac.yml @@ -100,8 +100,8 @@ steps: if [[ "$TILEDB_GCS" == "ON" ]]; then bootstrap_args="${bootstrap_args} --enable-gcs"; fi; - if [[ "$TILEDB_TBB" == "OFF" ]]; then - bootstrap_args="${bootstrap_args} --disable-tbb"; + if [[ "$TILEDB_TBB" == "ON" ]]; then + bootstrap_args="${bootstrap_args} --enable-tbb"; fi if [[ "$TILEDB_TOOLS" == "ON" ]]; then bootstrap_args="${bootstrap_args} --enable-tools";