Skip to content

Commit

Permalink
Remove MIPS64 builds from GitHub Actions
Browse files Browse the repository at this point in the history
Ubuntu 24.04 binutils breaks mips64 compilation, per ncroxon#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 <[email protected]>
  • Loading branch information
pbatard committed Dec 11, 2024
1 parent 72e10fa commit df50239
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/linux-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit df50239

Please sign in to comment.