Skip to content

Commit f01bbb9

Browse files
committed
WIP
1 parent 111c2b9 commit f01bbb9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/test-pr.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [ubuntu-24.04, macos-13, macos-14, macos-15]
14+
os: [ubuntu-24.04, macos-13, macos-14]
1515
node: [18, 20, 22]
1616

1717
runs-on: ${{ matrix.os }}
@@ -42,14 +42,18 @@ jobs:
4242
run: |
4343
brew install ninja flex bison automake autoconf-archive coreutils
4444
if [[ $(uname -m) == 'arm64' ]]; then
45-
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.bash_profile
46-
echo 'export BISON="/opt/homebrew/bin/bison"' >> ~/.bash_profile
45+
echo 'export PATH="/opt/homebrew/opt/bison/bin:/opt/homebrew/opt/flex/bin:$PATH"' >> ~/.bash_profile
46+
echo 'export BISON="/opt/homebrew/opt/bison/bin/bison"' >> ~/.bash_profile
4747
else
4848
echo 'export PATH="/usr/local/opt/bison/bin:/usr/local/opt/flex/bin:$PATH"' >> ~/.bash_profile
4949
echo 'export BISON="/usr/local/opt/bison/bin/bison"' >> ~/.bash_profile
5050
fi
5151
source ~/.bash_profile
5252
bison --version
53+
PATH="/opt/homebrew/opt/bison/bin:/opt/homebrew/opt/flex/bin:$PATH"
54+
bison --version
55+
PATH="/opt/homebrew/opt/bison/bin:$PATH"
56+
bison --version
5357
5458
- name: Export GitHub Actions cache environment variables
5559
uses: actions/github-script@v7

0 commit comments

Comments
 (0)