krata: fix github workflow for clients on darwin

This commit is contained in:
Alex Zenla 2024-03-21 18:28:52 -07:00
parent 0be154b667
commit 280831045a
No known key found for this signature in database
GPG Key ID: 067B238899B51269

View File

@ -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