From 370ec8bbe636f63436a4172fb89cc05ae81ceacf Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Thu, 21 Mar 2024 18:31:20 -0700 Subject: [PATCH] krata: fix client tests 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 735c65f..a967df6 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -47,6 +47,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