Set-up brew path correctly before bundle install

This commit is contained in:
halprin 2024-12-15 17:23:07 -07:00
parent b7b410fe73
commit f3f8d1e5fa
No known key found for this signature in database
GPG Key ID: 13654EE1A3F4E6CD

View File

@ -75,7 +75,9 @@ jobs:
- name: Install macOS Intel dependencies - name: Install macOS Intel dependencies
if: ${{ matrix.os.preset == 'mac' && matrix.os.name == 'macOS-Intel' }} if: ${{ matrix.os.preset == 'mac' && matrix.os.name == 'macOS-Intel' }}
run: arch -x86_64 /usr/local/homebrew/bin/brew bundle install run: |
$MACOS_ARCH_COMMAND eval "$(/usr/local/bin/brew shellenv)"
$MACOS_ARCH_COMMAND /usr/local/bin/brew bundle install
- name: Install Linux dependencies - name: Install Linux dependencies
if: ${{ matrix.os.runner == 'ubuntu-latest' }} if: ${{ matrix.os.runner == 'ubuntu-latest' }}