We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a061ae commit 25f40d4Copy full SHA for 25f40d4
dev/package-vcpkg.sh
@@ -6,8 +6,14 @@ CURRENT_DIR=$(cd "$(dirname "$BASH_SOURCE")"; pwd)
6
GLUTEN_DIR="$CURRENT_DIR/.."
7
8
cd "$GLUTEN_DIR"
9
-source /opt/rh/devtoolset-9/enable
10
-source /opt/gluten/dev/vcpkg/env.sh
+if [ "$LINUX_OS" == "centos" ]; then
+ if [ "$VERSION" == "8" ]; then
11
+ source /opt/rh/gcc-toolset-9/enable
12
+ elif [ "$VERSION" == "7" ]; then
13
+ source /opt/rh/devtoolset-9/enable
14
+ fi
15
+fi
16
+source ./dev/vcpkg/env.sh
17
./dev/buildbundle-veloxbe.sh --build_tests=ON --build_benchmarks=ON --enable_s3=ON --enable_hdfs=ON
18
mvn clean package -Pbackends-velox -Pceleborn -Puniffle -Pspark-3.2 -DskipTests
19
mvn clean package -Pbackends-velox -Pceleborn -Puniffle -Pspark-3.3 -DskipTests
0 commit comments