From: Matt Corallo Date: Sat, 3 Jun 2023 17:52:59 +0000 (+0000) Subject: Install `rust-src` on macOS since its now required for C bindings X-Git-Tag: v0.0.115.1^2~3 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-java;a=commitdiff_plain;h=fb114ac156d874c489b3fec2a7f2fb9690f93ffa Install `rust-src` on macOS since its now required for C bindings --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0c611ee..c3a4ff8a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -492,8 +492,10 @@ jobs: fail-fast: false runs-on: ${{ matrix.platform }} steps: - - name: Install other Rust platforms - run: rustup target install aarch64-apple-darwin + - name: Install Rust components + run: | + rustup target install aarch64-apple-darwin + rustup component add rust-src - name: Checkout source code uses: actions/checkout@v2 with: