From 4098a5efc7298a3cb06eb4cd68b1a4ffa2862a0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= <Michal.Trojnara@stunnel.org> Date: Wed, 22 Feb 2023 15:39:03 +0100 Subject: [PATCH] Install missing "make" in the CI on macOS (#236) --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 623839b..195b4be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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