.github/workflows/main.yml: install a recent GNU make on macos

Signed-off-by: Andrei Horodniceanu <a.horodniceanu@proton.me>
This commit is contained in:
Andrei Horodniceanu 2024-09-18 17:03:35 +03:00 committed by Nicholas Wilson
parent d578c61fc4
commit 573e81fe3f

View file

@ -115,6 +115,11 @@ jobs:
uses: dlang-community/setup-dlang@v1.3.0 uses: dlang-community/setup-dlang@v1.3.0
with: with:
compiler: ${{ matrix.host_dmd }} compiler: ${{ matrix.host_dmd }}
- name: 'MacOS: Install recent make'
if: runner.os == 'macOS'
run: |
brew install make
echo "PATH=/usr/local/opt/make/libexec/gnubin:$PATH" >> $GITHUB_ENV
- name: Set up repos - name: Set up repos
run: | run: |