We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9b32c6 commit d612094Copy full SHA for d612094
.github/workflows/build.yml
@@ -219,9 +219,17 @@ jobs:
219
runs-on: macos-latest
220
steps:
221
- uses: actions/checkout@v3
222
+ - name: Print original PATH
223
+ run: |
224
+ echo "PATH=$PATH"
225
+ type flex
226
+ type bison
227
+ # - name: Configure environment to use brew kegs for flex and bison
228
+ # run: |
229
+ # echo "PATH=/opt/homebrew/opt/flex/bin:/opt/homebrew/opt/bison/bin:$PATH" >> $GITHUB_ENV
230
- name: Install prerequisites
231
run: >-
- # brew update
232
+ brew update
233
234
brew install
235
cmake
@@ -235,7 +243,7 @@ jobs:
243
readline
236
244
libserialport
237
245
pkg-config
238
- - name: Print PATH
246
+ - name: Print PATH after brew install
239
247
run: |
240
248
echo "PATH=$PATH"
241
249
type flex
0 commit comments