Switch to gmake on macOS

This commit is contained in:
topjohnwu 2024-08-14 15:24:05 -07:00 committed by John Wu
parent 2bdc047c4d
commit 554eda8fe1

View File

@ -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: