From e1d6d0a1f224474417078a0a1b98a6c4b5c94a53 Mon Sep 17 00:00:00 2001 From: Shriraj Hegde Date: Sat, 9 Oct 2021 21:36:13 +0530 Subject: [PATCH] Skip installing gcc via Homebrew Change job name --- .github/workflows/continuous-build-macos.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/continuous-build-macos.yml b/.github/workflows/continuous-build-macos.yml index 0c1c322..6f681ab 100644 --- a/.github/workflows/continuous-build-macos.yml +++ b/.github/workflows/continuous-build-macos.yml @@ -15,7 +15,7 @@ on: - '.github/workflows/*' jobs: - build: + build-osx: runs-on: macos-latest @@ -24,8 +24,6 @@ jobs: - name: Install build tools run: | git checkout OSX - /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - brew install gcc - name: Compile run: | make CXX=g++-11 ARCH=x86_64