From db34f5b112692fc3a67ee47bb693b4ebe91003ab Mon Sep 17 00:00:00 2001 From: PHILO-HE Date: Fri, 7 Nov 2025 17:33:37 +0800 Subject: [PATCH] Initial --- dev/docker/Dockerfile.centos7-static-build | 2 +- dev/docker/Dockerfile.centos8-dynamic-build | 2 +- dev/docker/Dockerfile.centos8-static-build | 2 +- dev/docker/Dockerfile.centos9-dynamic-build | 2 +- dev/docker/Dockerfile.centos9-static-build | 2 +- dev/docker/cudf/Dockerfile | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev/docker/Dockerfile.centos7-static-build b/dev/docker/Dockerfile.centos7-static-build index e015dc517834..019ed599178f 100644 --- a/dev/docker/Dockerfile.centos7-static-build +++ b/dev/docker/Dockerfile.centos7-static-build @@ -35,7 +35,7 @@ RUN set -ex; \ -e 's/mirror\.centos\.org/vault.centos.org/' \ /etc/yum.repos.d/CentOS-SCLo-scl-rh.repo; \ yum install -y git patch wget sudo java-1.8.0-openjdk-devel ccache; \ - git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ + git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ echo "check_certificate = off" >> ~/.wgetrc; \ cd /opt/gluten && bash ./dev/vcpkg/setup-build-depends.sh; \ mkdir -p ${VCPKG_PATH}; \ diff --git a/dev/docker/Dockerfile.centos8-dynamic-build b/dev/docker/Dockerfile.centos8-dynamic-build index 04d5da8571a6..96a6c1b16815 100644 --- a/dev/docker/Dockerfile.centos8-dynamic-build +++ b/dev/docker/Dockerfile.centos8-dynamic-build @@ -45,7 +45,7 @@ RUN set -ex; \ wget -nv https://archive.apache.org/dist/celeborn/celeborn-0.6.0/apache-celeborn-0.6.0-bin.tgz -P /opt/; \ wget -nv https://archive.apache.org/dist/incubator/uniffle/0.9.2/apache-uniffle-0.9.2-incubating-bin.tar.gz -P /opt/; \ wget -nv https://archive.apache.org/dist/hadoop/common/hadoop-2.8.5/hadoop-2.8.5.tar.gz -P /opt/; \ - git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ + git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ cd /opt/gluten/.github/workflows/util/; \ ./install_spark_resources.sh 3.2; \ ./install_spark_resources.sh 3.3; \ diff --git a/dev/docker/Dockerfile.centos8-static-build b/dev/docker/Dockerfile.centos8-static-build index 9e116922730e..2f80f51b4171 100644 --- a/dev/docker/Dockerfile.centos8-static-build +++ b/dev/docker/Dockerfile.centos8-static-build @@ -34,7 +34,7 @@ RUN set -ex; \ yum install -y java-1.8.0-openjdk-devel patch wget git perl; \ rpm -qa | grep tzdata; \ dnf clean all; \ - git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ + git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ cd /opt/gluten && bash ./dev/vcpkg/setup-build-depends.sh; \ mkdir -p ${VCPKG_PATH}; \ echo "Build arrow, then install the native libs to system paths and jar package to .m2/ directory."; \ diff --git a/dev/docker/Dockerfile.centos9-dynamic-build b/dev/docker/Dockerfile.centos9-dynamic-build index e50268cbc0dc..9996fc9a61f1 100644 --- a/dev/docker/Dockerfile.centos9-dynamic-build +++ b/dev/docker/Dockerfile.centos9-dynamic-build @@ -43,7 +43,7 @@ RUN set -ex; \ wget -nv https://archive.apache.org/dist/celeborn/celeborn-0.6.0/apache-celeborn-0.6.0-bin.tgz -P /opt/; \ wget -nv https://archive.apache.org/dist/incubator/uniffle/0.9.2/apache-uniffle-0.9.2-incubating-bin.tar.gz -P /opt/; \ wget -nv https://archive.apache.org/dist/hadoop/common/hadoop-2.8.5/hadoop-2.8.5.tar.gz -P /opt/; \ - git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ + git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ cd /opt/gluten/.github/workflows/util/; \ ./install_spark_resources.sh 3.2; \ ./install_spark_resources.sh 3.3; \ diff --git a/dev/docker/Dockerfile.centos9-static-build b/dev/docker/Dockerfile.centos9-static-build index d50837c8ac9b..bdfea3435575 100644 --- a/dev/docker/Dockerfile.centos9-static-build +++ b/dev/docker/Dockerfile.centos9-static-build @@ -31,7 +31,7 @@ RUN set -ex; \ echo "check_certificate = off" >> ~/.wgetrc; \ yum install -y java-17-openjdk-devel patch wget git perl; \ dnf clean all; \ - git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ + git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten; \ cd /opt/gluten && bash ./dev/vcpkg/setup-build-depends.sh; \ mkdir -p ${VCPKG_PATH}; \ echo "Build arrow, then install the native libs to system paths and jar package to .m2/ directory."; \ diff --git a/dev/docker/cudf/Dockerfile b/dev/docker/cudf/Dockerfile index 668cc3cc0ae8..aaf3132985d3 100644 --- a/dev/docker/cudf/Dockerfile +++ b/dev/docker/cudf/Dockerfile @@ -18,7 +18,7 @@ FROM ghcr.io/facebookincubator/velox-dev:adapters RUN yum install -y sudo patch maven perl && ln -sf /usr/local/bin/cmake /usr/bin -RUN git clone --depth=1 https://github.com/apache/incubator-gluten /opt/gluten +RUN git clone -b branch-1.5 --depth=1 https://github.com/apache/incubator-gluten /opt/gluten # Install spark to folder /opt RUN cd /opt/gluten/.github/workflows/util/ && ./install_spark_resources.sh 3.4