From df5023956f13b9722bbdaa856ba9aba4598dfe2e Mon Sep 17 00:00:00 2001 From: Pete Batard Date: Wed, 11 Dec 2024 13:44:11 +0000 Subject: [PATCH] Remove MIPS64 builds from GitHub Actions Ubuntu 24.04 binutils breaks mips64 compilation, per https://github.com/ncroxon/gnu-efi/issues/29, and we didn't run tests for MIPS anyway for lack of a UEFI firmware. With GitHub Actions in the process of switching to Ubuntu 24.04 as the base image, we proactively remove MIPS builds. Signed-off-by: Pete Batard --- .github/workflows/linux-gcc.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linux-gcc.yml b/.github/workflows/linux-gcc.yml index fe39438..469894b 100644 --- a/.github/workflows/linux-gcc.yml +++ b/.github/workflows/linux-gcc.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - arch: [ia32, x64, aa64, arm, riscv64, mips64, loongarch64] + arch: [ia32, x64, aa64, arm, riscv64, loongarch64] include: - arch: ia32 dir: ia32 @@ -30,10 +30,11 @@ jobs: dir: riscv64 gcc: riscv64-linux-gnu cross_compile: riscv64-linux-gnu- - - arch: mips64 - dir: mips64el - gcc: mips64el-linux-gnuabi64 - cross_compile: mips64el-linux-gnuabi64- +# See https://github.com/ncroxon/gnu-efi/issues/29 +# - arch: mips64 +# dir: mips64el +# gcc: mips64el-linux-gnuabi64 +# cross_compile: mips64el-linux-gnuabi64- - arch: loongarch64 dir: loongarch64 gcc: multilib