From 81459a38a03c4201edd9302336263eff976d28ff Mon Sep 17 00:00:00 2001 From: ordian Date: Tue, 2 Jan 2024 11:14:58 +0100 Subject: [PATCH] Try fixing CI `mips64-unknown-linux-muslabi64 target` (used to test bigendian) was removed in 1.75.0. The workaround for now is to pin the toolchain to 1.74.0. We could try using `cross` instead in the future. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e42894b..d61b204d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: stable + toolchain: 1.74.0 override: true - name: Rust Cache