diff --git a/.github/workflows/client-tests.yml b/.github/workflows/client-tests.yml index d5ee94026eb..76b82349b85 100644 --- a/.github/workflows/client-tests.yml +++ b/.github/workflows/client-tests.yml @@ -42,12 +42,21 @@ jobs: run: | make install-mongo-dependencies - - name: "Install musl & dqlite (Ubuntu)" + - name: "Install musl & dqlite (Ubuntu)" if: (matrix.os == 'ubuntu-latest') shell: bash run: | sudo make MUSL_CROSS_COMPILE=0 musl-install dqlite-install + - name: "Install Mongo Dependencies (macOS)" + if: (matrix.os == 'macOS-latest') + run: | + brew tap mongodb/brew + brew update + brew install mongodb-community@4.4 + brew link mongodb-community@4.4 + brew services start mongodb/brew/mongodb-community@4.4 + - name: "Test client (Ubuntu)" if: (matrix.os == 'ubuntu-latest') shell: bash