From 9ed8776197507004ea9073f429ce972b5c419c44 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Fri, 24 Mar 2023 14:37:37 +0100 Subject: [PATCH] fix(ci): Use rust 1.68 for android compilation --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d944bd..121804e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,9 @@ jobs: - uses: actions/checkout@master - name: Install Rust Toolchain - run: rustup toolchain install stable --profile minimal --no-self-update + # See https://github.com/cross-rs/cross/issues/1222 for when + # stable can be used instead of 1.67 again. + run: rustup toolchain install 1.67 --profile minimal --no-self-update - uses: swatinem/rust-cache@v2