From 8ec9d729115e95b3deaca2b73039e129b007ea26 Mon Sep 17 00:00:00 2001 From: Joe Abraham Date: Mon, 9 Sep 2024 13:58:42 +0530 Subject: [PATCH] x --- .github/workflows/macos.yml | 4 +++- CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 2afab60a0e0c..797fc87be419 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -63,7 +63,9 @@ jobs: env: HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: "TRUE" run: | - scripts/setup-macos.sh + source scripts/setup-macos.sh + install_build_prerequisites + install_velox_deps_from_brew echo "NJOBS=`sysctl -n hw.ncpu`" >> $GITHUB_ENV brew unlink protobuf || echo "protobuf not installed" diff --git a/CMakeLists.txt b/CMakeLists.txt index e277d0091154..7f7cbc92f250 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -108,7 +108,7 @@ option(VELOX_ENABLE_ABFS "Build Abfs Connector" OFF) option(VELOX_ENABLE_HDFS "Build Hdfs Connector" OFF) option(VELOX_ENABLE_PARQUET "Enable Parquet support" OFF) option(VELOX_ENABLE_ARROW "Enable Arrow support" OFF) -option(VELOX_ENABLE_REMOTE_FUNCTIONS "Enable remote function support" ON) +option(VELOX_ENABLE_REMOTE_FUNCTIONS "Enable remote function support" OFF) option(VELOX_ENABLE_CCACHE "Use ccache if installed." ON) option(VELOX_BUILD_TEST_UTILS "Builds Velox test utilities" OFF)