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/gluten.git
The following commit(s) were added to refs/heads/main by this push:
new c12a678669 [GLUTEN-8821][VL] tools: fix gen function support script
(#11732)
c12a678669 is described below
commit c12a67866969617a88407f853b78064dcce151ed
Author: Yuan <[email protected]>
AuthorDate: Fri Mar 13 10:35:08 2026 +0000
[GLUTEN-8821][VL] tools: fix gen function support script (#11732)
fix the maven command in tool script
---------
Signed-off-by: Yuan <[email protected]>
---
tools/scripts/gen-function-support-docs.py | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/tools/scripts/gen-function-support-docs.py
b/tools/scripts/gen-function-support-docs.py
index 314ab7ea0e..a697f4294a 100644
--- a/tools/scripts/gen-function-support-docs.py
+++ b/tools/scripts/gen-function-support-docs.py
@@ -1242,7 +1242,7 @@ def run_test_suites(categories):
return
command = [
- "mvn",
+ "./build/mvn",
"test",
"-Pspark-3.5",
"-Pspark-ut",
@@ -1260,7 +1260,13 @@ def run_test_suites(categories):
def get_maven_project_version():
result = subprocess.run(
- ["mvn", "help:evaluate", "-Dexpression=project.version", "-q",
"-DforceStdout"],
+ [
+ "./build/mvn",
+ "help:evaluate",
+ "-Dexpression=project.version",
+ "-q",
+ "-DforceStdout",
+ ],
capture_output=True,
text=True,
cwd=gluten_home,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]