Skip to content

Commit b30def3

Browse files
ci(mac): fix brew install (remove non-existent libsrtp formula)
1 parent d18d68b commit b30def3

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build-binaries.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ jobs:
2020
- uses: actions/setup-node@v4
2121
with:
2222
node-version: '22'
23-
- name: Install system libraries (OpenSSL, Opus, libsrtp)
23+
- name: Install system libraries (OpenSSL, Opus)
2424
if: runner.os == 'macOS'
2525
run: |
2626
brew update
27-
brew install openssl@3 opus libsrtp pkg-config ninja cmake
27+
# libsrtp formula is not available on macOS runners; omit it.
28+
brew install openssl@3 opus pkg-config ninja cmake || true
2829
- name: Clone dependencies (no submodules)
2930
shell: bash
3031
run: |

0 commit comments

Comments
 (0)