diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml index 44240a8e854ca..2e7a4da80ef4c 100644 --- a/.github/workflows/perf.yml +++ b/.github/workflows/perf.yml @@ -10,7 +10,7 @@ on: env: TI_CI: "1" TI_SKIP_VERSION_CHECK: "ON" - CI_IMAGE_VERSION: '202305261112' + CI_IMAGE_VERSION: '202311231829' jobs: gpu_backends: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 837914ffe2278..826327b4eee28 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ env: METADATA_URL: ${{ secrets.METADATA_URL }} RELEASE_VERSION: ${{ github.event.inputs.version }} NIGHTLY: ${{ !github.event.inputs.version && '--nightly' || '' }} - CI_IMAGE_VERSION: '202305261112' + CI_IMAGE_VERSION: '202311231829' TI_CI: "1" TI_SKIP_VERSION_CHECK: 'ON' TI_USE_GIT_CACHE: ${{ vars.TI_USE_GIT_CACHE }} diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d1081c77f95e7..4a7f7edb06b69 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -18,7 +18,7 @@ env: TI_SKIP_VERSION_CHECK: 'ON' TI_LITE_TEST: ${{ github.event_name == 'pull_request' && ! contains(github.event.pull_request.labels.*.name, 'full-ci') && ! startsWith(github.base_ref, 'rc-') && '1' || '' }} TI_TEST_OFFLINE_CACHE: ${{ github.event.schedule == '0 18 * * *' && '1' || '' }} - CI_IMAGE_VERSION: '202305261112' + CI_IMAGE_VERSION: '202311231829' TI_USE_GIT_CACHE: ${{ vars.TI_USE_GIT_CACHE }} jobs: diff --git a/ci/Dockerfile.tpl b/ci/Dockerfile.tpl index f99723d3c6ab3..6d7d83d4ea6ba 100644 --- a/ci/Dockerfile.tpl +++ b/ci/Dockerfile.tpl @@ -61,9 +61,9 @@ RUN set -x && \ add-apt-repository -y ppa:git-core/ppa && \ apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 15CF4D18AF4F7421 && \ . /etc/lsb-release && \ - echo "deb http://apt.llvm.org/$DISTRIB_CODENAME/ llvm-toolchain-$DISTRIB_CODENAME-15 main" > /etc/apt/sources.list.d/llvm-15.list && \ + echo "deb http://apt.llvm.org/$DISTRIB_CODENAME/ llvm-toolchain-$DISTRIB_CODENAME-14 main" > /etc/apt/sources.list.d/llvm-14.list && \ apt update && \ - apt install -y build-essential clang-15 clang-tidy-15 llvm-15 lld-15 gcc-11 g++-11 curl wget sudo python3-pip git unzip && \ + apt install -y build-essential clang-14 clang-tidy-14 llvm-14 lld-14 gcc-11 g++-11 curl wget sudo python3-pip git unzip && \ python3 -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip && \ pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple && \ pip install -U cmake && \ @@ -72,18 +72,15 @@ RUN set -x && \ rm /usr/bin/ld && ln -sf /usr/bin/mold /usr/bin/ld && \ rm -rf /var/cache/apt/archives /var/lib/apt/lists && \ ln -sf /usr/bin/python3 /usr/bin/python && \ - ln -sf /usr/bin/clang-15 /usr/bin/clang && \ - ln -sf /usr/bin/clang++-15 /usr/bin/clang++ && \ - ln -sf /usr/bin/lld-15 /usr/bin/lld && \ - ln -sf /usr/bin/ld.lld-15 /usr/bin/ld.lld && \ + ln -sf /usr/bin/clang-14 /usr/bin/clang && \ + ln -sf /usr/bin/clang++-14 /usr/bin/clang++ && \ + ln -sf /usr/bin/lld-14 /usr/bin/lld && \ + ln -sf /usr/bin/ld.lld-14 /usr/bin/ld.lld && \ true # mold version is not special, just the latest one at the time of writing # lld is for AMDGPU backend, C++ code runs it. -ENV CC="/usr/bin/clang" \ - CXX="/usr/bin/clang++" - # ------- SNIPPET debian-addons-test ENV DEBIAN_FRONTEND=noninteractive @@ -196,7 +193,6 @@ RUN set -x && \ 'platforms;android-30' \ 'platforms;android-33' \ 'platform-tools' \ - 'patcher;v4' \ emulator \ && \ chown -R 1000:1000 /android-sdk && \ @@ -271,7 +267,6 @@ RUN set -x && \ && \ clang++ -v && \ true -ENV CC="clang" CXX="clang++" FROM centos:7 AS manylinux2014 USE manylinux2014-addons