Install missing "make" in the CI on macOS (#236)

This commit is contained in:
Michał Trojnara 2023-02-22 15:39:03 +01:00 committed by GitHub
parent e88bc1ca14
commit 4098a5efc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,6 +96,13 @@ jobs:
sudo apt-get update
sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime
- name: Install brew dependencies (macOS)
if: runner.os == 'macOS'
run: |
brew install make
echo "/usr/local/opt/make/libexec/gnubin" >> $GITHUB_PATH
echo "/usr/local/opt/openssl/bin" >> $GITHUB_PATH
- name: Setup the oldest supported version of cmake (macOS)
if: runner.os == 'macOS'
uses: jwlawson/actions-setup-cmake@v1.12