This is an automated email from the ASF dual-hosted git repository.
mingliang 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 73a1a01872 [VL][CI] Fix back upload golden files (#7880)
73a1a01872 is described below
commit 73a1a01872779d5e454cef83da28c68455021b75
Author: Mingliang Zhu <[email protected]>
AuthorDate: Wed Nov 13 15:11:11 2024 +0800
[VL][CI] Fix back upload golden files (#7880)
---
.github/workflows/velox_backend.yml | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/.github/workflows/velox_backend.yml
b/.github/workflows/velox_backend.yml
index 4b7f5836e7..fafceb1aa0 100644
--- a/.github/workflows/velox_backend.yml
+++ b/.github/workflows/velox_backend.yml
@@ -564,6 +564,12 @@ jobs:
with:
name: test-report-spark32
path: '**/surefire-reports/TEST-*.xml'
+ - name: Upload golden files
+ if: failure()
+ uses: actions/upload-artifact@v4
+ with:
+ name: golden-files-spark32
+ path: /tmp/tpch-approved-plan/**
run-spark-test-spark32-slow:
needs: build-native-lib-centos-7
@@ -633,6 +639,12 @@ jobs:
with:
name: test-report-spark33
path: '**/surefire-reports/TEST-*.xml'
+ - name: Upload golden files
+ if: failure()
+ uses: actions/upload-artifact@v4
+ with:
+ name: golden-files-spark33
+ path: /tmp/tpch-approved-plan/**
run-spark-test-spark33-slow:
@@ -704,6 +716,12 @@ jobs:
with:
name: test-report-spark34
path: '**/surefire-reports/TEST-*.xml'
+ - name: Upload golden files
+ if: failure()
+ uses: actions/upload-artifact@v4
+ with:
+ name: golden-files-spark34
+ path: /tmp/tpch-approved-plan/**
run-spark-test-spark34-slow:
@@ -775,6 +793,12 @@ jobs:
with:
name: test-report-spark35
path: '**/surefire-reports/TEST-*.xml'
+ - name: Upload golden files
+ if: failure()
+ uses: actions/upload-artifact@v4
+ with:
+ name: golden-files-spark35
+ path: /tmp/tpch-approved-plan/**
run-spark-test-spark35-scala213:
needs: build-native-lib-centos-7
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]