Skip to content

Commit eea0dc2

Browse files
committed
WIP: [ci] fix: disable windows runner, list homebrew installtion files
Signed-off-by: Christopher Arndt <[email protected]>
1 parent c6e0f62 commit eea0dc2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
os: [ubuntu-latest, macos-latest, windows-latest]
10+
os: [ubuntu-latest, macos-latest]
11+
#os: [ubuntu-latest, macos-latest, windows-latest]
1112

1213
runs-on: ${{ matrix.os }}
1314

@@ -51,7 +52,9 @@ jobs:
5152
run: Add-Content $env:GITHUB_PATH "C:\Program Files\jack\bin"
5253
- name: Update DYLD_LIBRARY_PATH (macOS)
5354
if: runner.os == 'macOS'
54-
run: echo "DYLD_LIBRARY_PATH=$(brew --prefix)/lib" >> "$GITHUB_ENV"
55+
run: |
56+
find $(brew --prefix)/opt
57+
echo "DYLD_LIBRARY_PATH=$(brew --prefix)/lib" >> "$GITHUB_ENV"
5558
- name: Run tests
5659
run: nimble test -y
5760
- name: Build examples (debug)

0 commit comments

Comments
 (0)