From 554eda8fe10b968733e73b93c2ef5f27312a7dae Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Wed, 14 Aug 2024 15:24:05 -0700 Subject: [PATCH] Switch to gmake on macOS --- .github/actions/setup/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 87e6ec997..460d6de02 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -21,6 +21,13 @@ runs: restore-keys: ${{ runner.os }} max-size: 10000M + - name: Set up GNU make + if: runner.os == 'macOS' + shell: bash + run: | + brew install make + echo 'GNUMAKE=gmake' >> "$GITHUB_ENV" + - name: Cache Gradle dependencies uses: actions/cache@v4 with: