From d1dae25cd22149d0902b4e72ca044c7ceace74a0 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 25 Aug 2023 14:40:32 -0700 Subject: [PATCH] ci: drop MIPS targets from cross-check (#5951) Currently, Tokio runs cross-compilation checks for the `mips-unknown-linux-gnu` and `mipsel-unknown-linux-musl` target triples. However, Rust has recently demoted these targets from Tier 2 support to Tier 3 (see rust-lang/compiler-team#648). Therefore, MIPS toolchains may not always be available, even in stable releases. This is currently [breaking our CI builds][1], as Rust 1.72.0 does not contain a standard library for `mips-unknown-linux-gnu`. This branch removes these builds from the cross-compilation check's build matrix. Tokio may still build successfully for MIPS targets, but we can't easily guarantee support when the stable Rust release train may or may not be able to build for MIPS targets. [1]: https://github.com/tokio-rs/tokio/actions/runs/5970263562/job/16197657405?pr=5947#step:3:80 --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88636d863..44b77ff45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -411,9 +411,7 @@ jobs: target: - powerpc-unknown-linux-gnu - powerpc64-unknown-linux-gnu - - mips-unknown-linux-gnu - arm-linux-androideabi - - mipsel-unknown-linux-musl steps: - uses: actions/checkout@v3 - name: Install Rust ${{ env.rust_stable }}