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 9963403588 [VL] Fix docker build (#11608)
9963403588 is described below

commit 996340358876bb10804a058d0fc2d5d0d0a4caf2
Author: Yuan <[email protected]>
AuthorDate: Thu Mar 5 22:13:02 2026 +0000

    [VL] Fix docker build (#11608)
    
    * [VL] Fix docker build due to recent changes on resource installation
    
    Signed-off-by: Yuan <[email protected]>
---
 dev/docker/Dockerfile.centos8-dynamic-build | 10 +++++-----
 dev/docker/Dockerfile.centos9-dynamic-build | 10 +++++-----
 ep/build-velox/src/build-velox.sh           |  2 +-
 3 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/dev/docker/Dockerfile.centos8-dynamic-build 
b/dev/docker/Dockerfile.centos8-dynamic-build
index b6597bb108..9e49b524e1 100644
--- a/dev/docker/Dockerfile.centos8-dynamic-build
+++ b/dev/docker/Dockerfile.centos8-dynamic-build
@@ -38,11 +38,11 @@ RUN set -ex; \
     wget -nv 
${mirror_host}/hadoop/common/hadoop-2.8.5/hadoop-2.8.5.tar.gz?action=download 
-O /opt/hadoop-2.8.5.tar.gz; \
     git clone --depth=1 https://github.com/apache/incubator-gluten 
/opt/gluten; \
     cd /opt/gluten/.github/workflows/util/; \
-    ./install-spark-resources.sh 3.3; \
-    ./install-spark-resources.sh 3.4; \
-    ./install-spark-resources.sh 3.5; \
-    ./install-spark-resources.sh 3.5-scala2.13; \
-    ./install-spark-resources.sh 4.0; \
+    ./install-resources.sh 3.3; \
+    ./install-resources.sh 3.4; \
+    ./install-resources.sh 3.5; \
+    ./install-resources.sh 3.5-scala2.13; \
+    ./install-resources.sh 4.0; \
     if [ "$(uname -m)" = "aarch64" ]; then \
         export CPU_TARGET="aarch64"; \
     fi; \
diff --git a/dev/docker/Dockerfile.centos9-dynamic-build 
b/dev/docker/Dockerfile.centos9-dynamic-build
index 9e9b8c485d..c6b846f567 100644
--- a/dev/docker/Dockerfile.centos9-dynamic-build
+++ b/dev/docker/Dockerfile.centos9-dynamic-build
@@ -36,11 +36,11 @@ RUN set -ex; \
     wget -nv 
${mirror_host}/hadoop/common/hadoop-2.8.5/hadoop-2.8.5.tar.gz?action=download 
-O /opt/hadoop-2.8.5.tar.gz; \
     git clone --depth=1 https://github.com/apache/incubator-gluten 
/opt/gluten; \
     cd /opt/gluten/.github/workflows/util/; \
-    ./install-spark-resources.sh 3.3; \
-    ./install-spark-resources.sh 3.4; \
-    ./install-spark-resources.sh 3.5; \
-    ./install-spark-resources.sh 3.5-scala2.13; \
-    ./install-spark-resources.sh 4.0; \
+    ./install-resources.sh 3.3; \
+    ./install-resources.sh 3.4; \
+    ./install-resources.sh 3.5; \
+    ./install-resources.sh 3.5-scala2.13; \
+    ./install-resources.sh 4.0; \
     if [ "$(uname -m)" = "aarch64" ]; then \
         export CPU_TARGET="aarch64"; \
     fi; \
diff --git a/ep/build-velox/src/build-velox.sh 
b/ep/build-velox/src/build-velox.sh
index 4376971648..7a7b1f0564 100755
--- a/ep/build-velox/src/build-velox.sh
+++ b/ep/build-velox/src/build-velox.sh
@@ -102,7 +102,7 @@ function compile {
   # maintain compatibility, but it prints a diagnostic note about the unknown 
flag if a true warning
   # or error occurs.
   CXX_FLAGS='-Wno-error=stringop-overflow -Wno-error=cpp 
-Wno-missing-field-initializers \
-    -Wno-error=uninitialized -Wno-unknown-warning-option'
+    -Wno-error=uninitialized -Wno-unknown-warning-option 
-Wno-deprecated-declarations'
 
   COMPILE_OPTION="-DCMAKE_CXX_FLAGS=\"$CXX_FLAGS\" -DVELOX_ENABLE_PARQUET=ON 
-DVELOX_BUILD_TESTING=OFF \
       -DVELOX_MONO_LIBRARY=ON -DVELOX_BUILD_RUNNER=OFF 
-DVELOX_SIMDJSON_SKIPUTF8VALIDATION=ON \


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to