From 280831045a5a7b4d7796dc2927d9ca6097a665a7 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Thu, 21 Mar 2024 18:28:52 -0700 Subject: [PATCH] krata: fix github workflow for clients on darwin --- .github/workflows/client.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index 19dcea1..735c65f 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -18,6 +18,11 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable + if: ${{ matrix.os.name != 'darwin' }} + - uses: dtolnay/rust-toolchain@stable + with: + targets: "${{ matrix.arch }}-apple-darwin" + if: ${{ matrix.os.name == 'darwin' }} - run: ./hack/ci/install-deps.sh if: ${{ matrix.os.name == 'linux' }} - uses: homebrew/actions/setup-homebrew@master