From af3f4be066891a5dd261cf1ab52a92aea486028f Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Thu, 12 Mar 2026 18:27:03 +0000 Subject: [PATCH] ci: remove mips64el-stable-cross and mips64el-unstable-cross These jobs are failing for a long time. Debian is in the process of removing mips64el: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1105972. Signed-off-by: Andrei Vagin --- .github/workflows/ci.yml | 3 --- scripts/build/Dockerfile.mips64el-stable-cross.hdr | 6 ------ scripts/build/Dockerfile.mips64el-stable-cross.tmpl | 1 - scripts/build/Dockerfile.mips64el-unstable-cross.hdr | 6 ------ scripts/build/Dockerfile.mips64el-unstable-cross.tmpl | 1 - scripts/build/Makefile | 4 ++-- 6 files changed, 2 insertions(+), 19 deletions(-) delete mode 100644 scripts/build/Dockerfile.mips64el-stable-cross.hdr delete mode 120000 scripts/build/Dockerfile.mips64el-stable-cross.tmpl delete mode 100644 scripts/build/Dockerfile.mips64el-unstable-cross.hdr delete mode 120000 scripts/build/Dockerfile.mips64el-unstable-cross.tmpl diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3363fbea..233754c1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,7 +85,6 @@ jobs: armv7-stable-cross, aarch64-stable-cross, ppc64-stable-cross, - mips64el-stable-cross, riscv64-stable-cross, ] include: @@ -95,8 +94,6 @@ jobs: target: aarch64-unstable-cross - experimental: true target: ppc64-unstable-cross - - experimental: true - target: mips64el-unstable-cross steps: - uses: actions/checkout@v4 - name: Run Cross Compilation Targets diff --git a/scripts/build/Dockerfile.mips64el-stable-cross.hdr b/scripts/build/Dockerfile.mips64el-stable-cross.hdr deleted file mode 100644 index 6cc04042f..000000000 --- a/scripts/build/Dockerfile.mips64el-stable-cross.hdr +++ /dev/null @@ -1,6 +0,0 @@ -FROM docker.io/dockcross/base:latest - -ENV ARCH=mips -ENV SUBARCH=mips -ENV DEBIAN_ARCH=mips64el -ENV CROSS_TRIPLET=mips64el-linux-gnuabi64 diff --git a/scripts/build/Dockerfile.mips64el-stable-cross.tmpl b/scripts/build/Dockerfile.mips64el-stable-cross.tmpl deleted file mode 120000 index 81ef22980..000000000 --- a/scripts/build/Dockerfile.mips64el-stable-cross.tmpl +++ /dev/null @@ -1 +0,0 @@ -Dockerfile.stable-cross.tmpl \ No newline at end of file diff --git a/scripts/build/Dockerfile.mips64el-unstable-cross.hdr b/scripts/build/Dockerfile.mips64el-unstable-cross.hdr deleted file mode 100644 index 6cc04042f..000000000 --- a/scripts/build/Dockerfile.mips64el-unstable-cross.hdr +++ /dev/null @@ -1,6 +0,0 @@ -FROM docker.io/dockcross/base:latest - -ENV ARCH=mips -ENV SUBARCH=mips -ENV DEBIAN_ARCH=mips64el -ENV CROSS_TRIPLET=mips64el-linux-gnuabi64 diff --git a/scripts/build/Dockerfile.mips64el-unstable-cross.tmpl b/scripts/build/Dockerfile.mips64el-unstable-cross.tmpl deleted file mode 120000 index 955ae1fd4..000000000 --- a/scripts/build/Dockerfile.mips64el-unstable-cross.tmpl +++ /dev/null @@ -1 +0,0 @@ -Dockerfile.unstable-cross.tmpl \ No newline at end of file diff --git a/scripts/build/Makefile b/scripts/build/Makefile index a420cea94..4966736c0 100644 --- a/scripts/build/Makefile +++ b/scripts/build/Makefile @@ -1,6 +1,6 @@ ARCHES := x86_64 fedora-asan fedora-rawhide armv7hf -STABLE_CROSS_ARCHES := armv7-stable-cross aarch64-stable-cross ppc64-stable-cross mips64el-stable-cross riscv64-stable-cross -UNSTABLE_CROSS_ARCHES := armv7-unstable-cross aarch64-unstable-cross ppc64-unstable-cross mips64el-unstable-cross +STABLE_CROSS_ARCHES := armv7-stable-cross aarch64-stable-cross ppc64-stable-cross riscv64-stable-cross +UNSTABLE_CROSS_ARCHES := armv7-unstable-cross aarch64-unstable-cross ppc64-unstable-cross NON_CLANG := $(UNSTABLE_CROSS_ARCHES) $(STABLE_CROSS_ARCHES) CREATE_DOCKERFILES := $(ARCHES) $(NON_CLANG) TARGETS := $(ARCHES) alpine archlinux