Skip to content

Commit

Permalink
Fix weekly
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILO-HE committed Jul 24, 2024
1 parent 35c751c commit fd7b198
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions dev/builddeps-veloxbe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,13 @@ if [ -z "${GLUTEN_VCPKG_ENABLED:-}" ] && [ $RUN_SETUP_SCRIPT == "ON" ]; then
echo "Unsupported kernel: $OS"
exit 1
fi
if [ $ENABLE_S3 == "ON" ]; then
if [ $OS == 'Darwin' ]; then
echo "S3 is not supported on MacOS."
exit 1
fi
${VELOX_HOME}/scripts/setup-adapters.sh aws
fi
if [ $ENABLE_HDFS == "ON" ]; then
if [ $OS == 'Darwin' ]; then
echo "HDFS is not supported on MacOS."
Expand All @@ -256,13 +263,6 @@ if [ -z "${GLUTEN_VCPKG_ENABLED:-}" ] && [ $RUN_SETUP_SCRIPT == "ON" ]; then
install_libhdfs3
popd
fi
if [ $ENABLE_S3 == "ON" ]; then
if [ $OS == 'Darwin' ]; then
echo "S3 is not supported on MacOS."
exit 1
fi
${VELOX_HOME}/scripts/setup-adapters.sh aws
fi
if [ $ENABLE_GCS == "ON" ]; then
${VELOX_HOME}/scripts/setup-adapters.sh gcs
fi
Expand Down

0 comments on commit fd7b198

Please sign in to comment.