From 927149c17c7f246e9c77127a282234206381fa65 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 9 Mar 2023 17:44:12 +0000 Subject: [PATCH 1/1] Work around rustc regression in 1.68 on android --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e90cd6e..d612a3db 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -266,6 +266,9 @@ jobs: chmod +x ./rustup.sh ./rustup.sh -y . $HOME/.cargo/env + # Temporarily use 1.67.1 to fix https://github.com/rust-lang/rust/issues/108943 + rustup install 1.67.1 + rustup default 1.67.1 rustup target add armv7-linux-androideabi rustup target add aarch64-linux-android rustup target add i686-linux-android -- 2.30.2