This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 1c69074108 [CI] Remove i386 and Hexagon from CI pipeline (2) (#18749)
1c69074108 is described below

commit 1c69074108781c0fea395356b7599127f6de7b2b
Author: Masahiro Hiramori <[email protected]>
AuthorDate: Thu Feb 12 08:51:42 2026 +0900

    [CI] Remove i386 and Hexagon from CI pipeline (2) (#18749)
    
    Part of #18682
---
 ci/jenkins/docker-images.ini |  2 --
 docker/Dockerfile.ci_hexagon | 85 --------------------------------------------
 docker/Dockerfile.ci_i386    | 72 -------------------------------------
 3 files changed, 159 deletions(-)

diff --git a/ci/jenkins/docker-images.ini b/ci/jenkins/docker-images.ini
index bf2a11ab1b..44f58d3573 100644
--- a/ci/jenkins/docker-images.ini
+++ b/ci/jenkins/docker-images.ini
@@ -20,7 +20,5 @@
 ci_arm: tlcpack/ci-arm:20250513-063354-70aa3797
 ci_cpu: tlcpack/ci_cpu:20250513-063354-70aa3797
 ci_gpu: tlcpack/ci-gpu:20250513-063354-70aa3797
-ci_hexagon: tlcpack/ci-hexagon:20250513-063354-70aa3797
-ci_i386: tlcpack/ci-i386:20250513-063354-70aa3797
 ci_lint: tlcpack/ci-lint:20250513-063354-70aa3797
 ci_wasm: tlcpack/ci-wasm:20250513-063354-70aa3797
diff --git a/docker/Dockerfile.ci_hexagon b/docker/Dockerfile.ci_hexagon
deleted file mode 100644
index 0d0c6c034f..0000000000
--- a/docker/Dockerfile.ci_hexagon
+++ /dev/null
@@ -1,85 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-# CI docker Hexagon env
-# tag: v0.02
-FROM tvmcihexagon/ci-hexagon-base:v0.02_SDK4.5.0.3
-
-COPY utils/apt-install-and-clear.sh /usr/local/bin/apt-install-and-clear
-
-RUN apt-get update --fix-missing
-
-RUN apt-install-and-clear -y ca-certificates gnupg2 libxml2-dev
-
-COPY install/ubuntu_setup_tz.sh /install/ubuntu_setup_tz.sh
-RUN bash /install/ubuntu_setup_tz.sh
-
-COPY install/ubuntu_install_core.sh /install/ubuntu_install_core.sh
-RUN bash /install/ubuntu_install_core.sh
-
-COPY install/ubuntu_install_cmake_source.sh 
/install/ubuntu_install_cmake_source.sh
-RUN bash /install/ubuntu_install_cmake_source.sh
-
-COPY install/ubuntu_install_googletest.sh /install/ubuntu_install_googletest.sh
-RUN bash /install/ubuntu_install_googletest.sh
-
-ENV TVM_VENV /venv/apache-tvm-py3.9
-COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
-COPY install/ubuntu_install_python.sh /install/ubuntu_install_python.sh
-RUN bash /install/ubuntu_install_python.sh 3.9
-ENV PATH ${TVM_VENV}/bin:$PATH
-ENV PYTHONNOUSERSITE 1  # Disable .local directory from affecting CI.
-
-# Rust env (build early; takes a while)
-COPY install/ubuntu_install_rust.sh /install/ubuntu_install_rust.sh
-RUN bash /install/ubuntu_install_rust.sh
-ENV RUSTUP_HOME /opt/rust
-ENV CARGO_HOME /opt/rust
-ENV PATH $PATH:$CARGO_HOME/bin
-
-COPY install/ubuntu_install_python_package.sh 
/install/ubuntu_install_python_package.sh
-RUN bash /install/ubuntu_install_python_package.sh
-
-# Hexagon
-COPY install/ubuntu_install_hexagon.sh /install/ubuntu_install_hexagon.sh
-RUN bash /install/ubuntu_install_hexagon.sh
-ENV HEXAGON_SDK_ROOT "/opt/qualcomm/hexagon_sdk"
-ENV CLANG_LLVM_HOME /opt/clang-llvm
-ENV LD_LIBRARY_PATH $LD_LIBRARY_PATH:/opt/clang-llvm/lib
-ENV PATH /opt/clang-llvm/bin:$PATH
-ENV HEXAGON_TOOLCHAIN "${HEXAGON_SDK_ROOT}/tools/HEXAGON_Tools/8.5.08/Tools"
-
-# sccache
-COPY install/ubuntu_install_sccache.sh /install/ubuntu_install_sccache.sh
-RUN bash /install/ubuntu_install_sccache.sh
-ENV PATH /opt/sccache:$PATH
-
-# TensorFlow deps
-COPY install/ubuntu_install_tensorflow.sh /install/ubuntu_install_tensorflow.sh
-RUN bash /install/ubuntu_install_tensorflow.sh
-
-# TFLite deps
-COPY install/ubuntu_install_tflite.sh /install/ubuntu_install_tflite.sh
-RUN bash /install/ubuntu_install_tflite.sh
-
-# Install ONNX
-COPY install/ubuntu_install_onnx.sh /install/ubuntu_install_onnx.sh
-RUN bash /install/ubuntu_install_onnx.sh
-
-# xgboost (for tuning)
-COPY install/ubuntu_install_redis.sh /install/ubuntu_install_redis.sh
-RUN bash /install/ubuntu_install_redis.sh
diff --git a/docker/Dockerfile.ci_i386 b/docker/Dockerfile.ci_i386
deleted file mode 100644
index b4aa2b6bff..0000000000
--- a/docker/Dockerfile.ci_i386
+++ /dev/null
@@ -1,72 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-# CI docker i386 env
-# tag: v0.53
-
-FROM i386/ubuntu:20.04
-
-COPY utils/apt-install-and-clear.sh /usr/local/bin/apt-install-and-clear
-
-RUN apt-get update --fix-missing
-
-RUN apt-install-and-clear -y ca-certificates
-
-COPY install/ubuntu_setup_tz.sh /install/ubuntu_setup_tz.sh
-RUN bash /install/ubuntu_setup_tz.sh
-
-COPY install/ubuntu2004_install_core.sh /install/ubuntu2004_install_core.sh
-RUN bash /install/ubuntu2004_install_core.sh
-
-COPY install/ubuntu_install_cmake_source.sh 
/install/ubuntu_install_cmake_source.sh
-RUN bash /install/ubuntu_install_cmake_source.sh
-
-COPY install/ubuntu_install_googletest.sh /install/ubuntu_install_googletest.sh
-RUN bash /install/ubuntu_install_googletest.sh
-
-COPY install/ubuntu_install_llvm.sh /install/ubuntu_install_llvm.sh
-RUN bash /install/ubuntu_install_llvm.sh
-
-# Rust env (build early; takes a while)
-COPY install/ubuntu_install_rust.sh /install/ubuntu_install_rust.sh
-RUN bash /install/ubuntu_install_rust.sh
-ENV RUSTUP_HOME /opt/rust
-ENV CARGO_HOME /opt/rust
-ENV PATH $PATH:$CARGO_HOME/bin
-ENV PYTHONNOUSERSITE 1  # Disable .local directory from affecting CI.
-
-ENV TVM_VENV /venv/apache-tvm-py3.9
-COPY python/bootstrap/lockfiles /install/python/bootstrap/lockfiles
-COPY install/ubuntu2004_install_python.sh /install/ubuntu2004_install_python.sh
-RUN bash /install/ubuntu2004_install_python.sh
-ENV PATH ${TVM_VENV}/bin:$PATH
-
-COPY install/ubuntu2004_install_python_package.sh 
/install/ubuntu2004_install_python_package.sh
-RUN bash /install/ubuntu2004_install_python_package.sh
-
-# AutoTVM deps
-COPY install/ubuntu2004_install_redis.sh /install/ubuntu2004_install_redis.sh
-RUN bash /install/ubuntu2004_install_redis.sh
-
-# Chisel deps for TSIM
-COPY install/ubuntu_install_sbt.sh /install/ubuntu_install_sbt.sh
-RUN bash /install/ubuntu_install_sbt.sh
-
-# sccache
-COPY install/ubuntu_install_sccache.sh /install/ubuntu_install_sccache.sh
-RUN bash /install/ubuntu_install_sccache.sh
-ENV PATH /opt/sccache:$PATH

Reply via email to