This is an automated email from the ASF dual-hosted git repository.
philo 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 07c1ce7b4 [GLUTEN-6957][VL] Fix mvn not found in cache job (#6974)
07c1ce7b4 is described below
commit 07c1ce7b42c711ab9bc2a7d654a41bb7454bc4d1
Author: PHILO-HE <[email protected]>
AuthorDate: Thu Aug 22 14:25:09 2024 +0800
[GLUTEN-6957][VL] Fix mvn not found in cache job (#6974)
---
.github/workflows/velox_backend_cache.yml | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/velox_backend_cache.yml
b/.github/workflows/velox_backend_cache.yml
index 44ee969cb..a25eda936 100644
--- a/.github/workflows/velox_backend_cache.yml
+++ b/.github/workflows/velox_backend_cache.yml
@@ -77,14 +77,17 @@ jobs:
./cpp/build/velox/benchmarks/
/root/.m2/repository/org/apache/arrow/
key: cache-velox-build-centos-8-${{ hashFiles('./cache-key') }}
- - name: Build Gluten native libraries
+ - name: Setup java and maven
if: steps.check-cache.outputs.cache-hit != 'true'
run: |
- df -a
sed -i -e "s|mirrorlist=|#mirrorlist=|g" /etc/yum.repos.d/CentOS-*
|| true
sed -i -e
"s|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g"
/etc/yum.repos.d/CentOS-* || true
yum install sudo patch java-1.8.0-openjdk-devel wget -y
bash .github/workflows/util/setup_helper.sh install_maven
+ - name: Build Gluten native libraries
+ if: steps.check-cache.outputs.cache-hit != 'true'
+ run: |
+ df -a
bash dev/ci-velox-buildshared-centos-8.sh
- name: Cache
if: steps.check-cache.outputs.cache-hit != 'true'
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]