forked from versatica/mediasoup
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag '3.12.8' into feat/mediasoup/Audio-consumer-changeProducer-…
…implementation-v2-3128 3.12.8
- Loading branch information
Showing
56 changed files
with
3,300 additions
and
1,806 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: mediasoup-worker-prebuild | ||
|
||
on: | ||
push: | ||
# Only trigger for production releases. | ||
tags: | ||
- "*.*.*" | ||
|
||
# Only trigger when other workflows succeeded. | ||
workflow_run: | ||
workflows: [mediasoup-worker, mediasoup-node, mediasoup-rust] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
ci: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build: | ||
# For Linux let's use an old version of Ubuntu (20.04) that builds the | ||
# mediasoup-worker binary using an old version of GLib, so it will work | ||
# on Linux hosts running more modern GLib versions. | ||
# See https://github.com/versatica/mediasoup/issues/1089. | ||
- os: ubuntu-20.04 | ||
cc: gcc | ||
cxx: g++ | ||
- os: macos-12 | ||
cc: clang | ||
cxx: clang++ | ||
- os: windows-2022 | ||
cc: cl | ||
cxx: cl | ||
node: | ||
- 18 | ||
|
||
runs-on: ${{ matrix.build.os }} | ||
|
||
env: | ||
CC: ${{ matrix.build.cc }} | ||
CXX: ${{ matrix.build.cxx }} | ||
MEDIASOUP_SKIP_WORKER_PREBUILT_DOWNLOAD: "true" | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
|
||
# We need to install some NPM production deps for npm-scripts.mjs to work. | ||
- run: npm ci --ignore-scripts --omit=dev | ||
- run: npm run worker:build | ||
# Publish prebuild binaries on tag. | ||
- run: npm run worker:prebuild | ||
- name: Upload mediasoup-worker prebuilt binary | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: worker/prebuild/mediasoup-worker-*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import * as mediasoup from '../'; | ||
|
||
const { createWorker } = mediasoup; | ||
|
||
let worker: mediasoup.types.Worker; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.