krata: fix client tests on darwin

This commit is contained in:
Alex Zenla 2024-03-21 18:31:20 -07:00
parent 280831045a
commit 370ec8bbe6
No known key found for this signature in database
GPG Key ID: 067B238899B51269

View File

@ -47,6 +47,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