From 28f24376147d3fae9959d4d3143dccf21998cb06 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Thu, 6 Jul 2023 20:20:19 +0200 Subject: [PATCH] Disable MIPS in CI See https://github.com/rust-lang/compiler-team/issues/648 --- .../.github/workflows/main.yml | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/library/compiler-builtins/.github/workflows/main.yml b/library/compiler-builtins/.github/workflows/main.yml index 3d63bc070cda..b69c48c16a95 100644 --- a/library/compiler-builtins/.github/workflows/main.yml +++ b/library/compiler-builtins/.github/workflows/main.yml @@ -23,18 +23,20 @@ jobs: - target: i686-unknown-linux-gnu os: ubuntu-latest rust: nightly - - target: mips-unknown-linux-gnu - os: ubuntu-latest - rust: nightly - - target: mips64-unknown-linux-gnuabi64 - os: ubuntu-latest - rust: nightly - - target: mips64el-unknown-linux-gnuabi64 - os: ubuntu-latest - rust: nightly - - target: mipsel-unknown-linux-gnu - os: ubuntu-latest - rust: nightly + # MIPS targets disabled since they are dropped to tier 3. + # See https://github.com/rust-lang/compiler-team/issues/648 + #- target: mips-unknown-linux-gnu + # os: ubuntu-latest + # rust: nightly + #- target: mips64-unknown-linux-gnuabi64 + # os: ubuntu-latest + # rust: nightly + #- target: mips64el-unknown-linux-gnuabi64 + # os: ubuntu-latest + # rust: nightly + #- target: mipsel-unknown-linux-gnu + # os: ubuntu-latest + # rust: nightly - target: powerpc-unknown-linux-gnu os: ubuntu-latest rust: nightly