File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 11
11
strategy :
12
12
fail-fast : false
13
13
matrix :
14
- os : [ubuntu-24.04, macos-13, macos-14, macos-15 ]
14
+ os : [ubuntu-24.04, macos-13, macos-14]
15
15
node : [18, 20, 22]
16
16
17
17
runs-on : ${{ matrix.os }}
@@ -42,14 +42,18 @@ jobs:
42
42
run : |
43
43
brew install ninja flex bison automake autoconf-archive coreutils
44
44
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
47
47
else
48
48
echo 'export PATH="/usr/local/opt/bison/bin:/usr/local/opt/flex/bin:$PATH"' >> ~/.bash_profile
49
49
echo 'export BISON="/usr/local/opt/bison/bin/bison"' >> ~/.bash_profile
50
50
fi
51
51
source ~/.bash_profile
52
52
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
53
57
54
58
- name : Export GitHub Actions cache environment variables
55
59
uses : actions/github-script@v7
You can’t perform that action at this time.
0 commit comments