From 27a2a2bfa3268c9703531ac0e8cca34d98f50009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Wed, 22 Feb 2023 16:35:35 +0100 Subject: [PATCH] Install Xcode --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 195b4be..af518ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,12 +96,11 @@ jobs: sudo apt-get update sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime - - name: Install brew dependencies (macOS) + - name: Install Xcode (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 + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable - name: Setup the oldest supported version of cmake (macOS) if: runner.os == 'macOS'