From a8e299d03f45e2012f6f29c65756fe7d40db82ca Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Thu, 21 Mar 2024 18:22:20 -0700 Subject: [PATCH] krata: install homebrew on darwin ci for client builds --- .github/workflows/client.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index aff2a5c..4d15f7e 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -19,6 +19,8 @@ jobs: - uses: dtolnay/rust-toolchain@stable - run: ./hack/ci/install-deps.sh if: ${{ matrix.os.name == 'linux' }} + - uses: homebrew/actions/setup-homebrew@master + if: ${{ matrix.os.name == 'darwin' }} - run: ./hack/ci/install-mac-deps.sh if: ${{ matrix.os.name == 'darwin' }} - run: ./hack/build/cargo.sh build --bin kratactl @@ -40,6 +42,8 @@ jobs: - uses: dtolnay/rust-toolchain@stable - run: ./hack/ci/install-deps.sh if: ${{ matrix.os.name == 'linux' }} + - uses: homebrew/actions/setup-homebrew@master + if: ${{ matrix.os.name == 'darwin' }} - run: ./hack/ci/install-mac-deps.sh if: ${{ matrix.os.name == 'darwin' }} - run: ./hack/build/cargo.sh test --bin kratactl