This is an automated email from the ASF dual-hosted git repository.
yuanzhou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 724cd38479 [VL] Fix weekly build validation (#10750)
724cd38479 is described below
commit 724cd384796a795cee0cd66c8f67ed3226e7beb6
Author: PHILO-HE <[email protected]>
AuthorDate: Thu Sep 18 20:43:57 2025 +0800
[VL] Fix weekly build validation (#10750)
Spark-4.0 has been added to the Gluten build script, but it requires Java
17. Currently, the weekly build environment only has Java 8 installed. This
patch changed to build and test for Spark-3.5 only
---
.github/workflows/velox_weekly.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/velox_weekly.yml
b/.github/workflows/velox_weekly.yml
index 67cc7de238..5091fb1905 100644
--- a/.github/workflows/velox_weekly.yml
+++ b/.github/workflows/velox_weekly.yml
@@ -71,7 +71,7 @@ jobs:
ls -l /usr/bin/mvn
git clone -b main --depth=1
https://github.com/apache/incubator-gluten.git && cd incubator-gluten/
- ./dev/package.sh
+ ./dev/package.sh --spark_version=3.5
build-on-centos:
@@ -117,7 +117,7 @@ jobs:
export MAVEN_HOME=/usr/lib/maven && \
export PATH=${PATH}:${MAVEN_HOME}/bin
- cd $GITHUB_WORKSPACE/ && ./dev/package.sh
+ cd $GITHUB_WORKSPACE/ && ./dev/package.sh --spark_version=3.5
build-on-ubuntu:
strategy:
@@ -153,7 +153,7 @@ jobs:
fi
sudo apt-get install -y openjdk-8-jdk python3-pip cmake
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
- cd $GITHUB_WORKSPACE/ && ./dev/package.sh
+ cd $GITHUB_WORKSPACE/ && ./dev/package.sh --spark_version=3.5
build-on-openeuler:
strategy:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]