From: Matt Corallo Date: Wed, 4 Sep 2024 14:17:01 +0000 (+0000) Subject: Use older `cbindgen` on android to work around MSRV X-Git-Tag: v0.0.124.0^2~1 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=2575248c1df64d834858dc471d1bfb84530d8cfc;p=ldk-java Use older `cbindgen` on android to work around MSRV --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7740794..b6957f4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -661,7 +661,11 @@ jobs: - name: Install cbindgen run: | . $HOME/.cargo/env - cargo install cbindgen + git clone https://github.com/eqrion/cbindgen + cd cbindgen/ + git checkout v0.20.0 + cargo update -p indexmap --precise "1.6.2" --verbose + cargo install --locked --path . - name: Checkout Rust-Lightning and LDK-C-Bindings git run: | git config --global user.email "ldk-ci@example.com"