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

View File

@ -18,6 +18,11 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable - 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 - run: ./hack/ci/install-deps.sh
if: ${{ matrix.os.name == 'linux' }} if: ${{ matrix.os.name == 'linux' }}
- uses: homebrew/actions/setup-homebrew@master - uses: homebrew/actions/setup-homebrew@master