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 a460f4e781 [GLUTEN-10254][VL] fix centos9 docker image build (#10312)
a460f4e781 is described below
commit a460f4e7812c0acaf7768458271710cf8e59bd7c
Author: Yuan <[email protected]>
AuthorDate: Mon Aug 4 20:50:35 2025 +0100
[GLUTEN-10254][VL] fix centos9 docker image build (#10312)
hit the bug on docker build action. This patch makes a workaround by using
ubuntu-22.04
docker/build-push-action#1302
---------
Signed-off-by: Yuan <[email protected]>
---
.github/workflows/docker_image.yml | 4 ++--
.github/workflows/velox_nightly.yml | 1 +
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/docker_image.yml
b/.github/workflows/docker_image.yml
index 43e41697c8..be4894bd22 100644
--- a/.github/workflows/docker_image.yml
+++ b/.github/workflows/docker_image.yml
@@ -146,7 +146,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- os: [ ubuntu-latest, ubuntu-24.04-arm ]
+ os: [ ubuntu-22.04, ubuntu-22.04-arm ]
steps:
- name: Checkout repository
@@ -259,7 +259,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- os: [ ubuntu-latest, ubuntu-24.04-arm ]
+ os: [ ubuntu-22.04, ubuntu-22.04-arm ]
jdk: [jdk8, jdk11, jdk17]
env:
JDK_VERSION: 1.8.0
diff --git a/.github/workflows/velox_nightly.yml
b/.github/workflows/velox_nightly.yml
index 3d9a97bc0b..4b11cba190 100644
--- a/.github/workflows/velox_nightly.yml
+++ b/.github/workflows/velox_nightly.yml
@@ -33,6 +33,7 @@ concurrency:
jobs:
build-native-lib:
+ if: ${{ startsWith(github.repository, 'apache/') }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]