From 842e3149e20baac7f2892aecd0e3b841e24b2eea Mon Sep 17 00:00:00 2001 From: halprin Date: Tue, 17 Dec 2024 18:25:48 -0700 Subject: [PATCH] Try not running brew in x86_64 --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d64d8ba0..7350bea3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -69,16 +69,14 @@ jobs: shell: arch -x86_64 /bin/bash -e {0} run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - - name: Install macOS Intel dependencies + - name: Enshrine Intel version of Brew if: ${{ matrix.os.name == 'macOS-Intel' }} shell: arch -x86_64 /bin/bash -e {0} run: | eval "$(/usr/local/bin/brew shellenv)" # makes the Intel version of Brew and its installs are enshrined as the default echo "PATH=$PATH" >> $GITHUB_ENV # modify $PATH so the above step persists into the future steps - brew bundle install - - name: Install macOS ARM dependencies - if: ${{ matrix.os.name == 'macOS-ARM' }} + - name: Install macOS dependencies run: brew bundle install - name: Install Linux dependencies