From fb114ac156d874c489b3fec2a7f2fb9690f93ffa Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 3 Jun 2023 17:52:59 +0000 Subject: [PATCH] Install `rust-src` on macOS since its now required for C bindings --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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: -- 2.30.2