Skip to content

Commit a0a961b

Browse files
authored
chore: update webrtc and all dependents (#512)
1 parent a1b926e commit a0a961b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/ffi-builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
push:
1818
branches: ["main"]
1919
tags:
20-
- "ffi-v*"
20+
- "rust-sdks/livekit-ffi@*"
2121
workflow_dispatch:
2222

2323
env:
@@ -208,7 +208,7 @@ jobs:
208208
needs: build
209209
permissions:
210210
contents: write
211-
if: startsWith(github.ref, 'refs/tags/ffi-v')
211+
if: startsWith(github.ref, 'refs/tags/rust-sdks/livekit-ffi')
212212
env:
213213
GH_TOKEN: ${{ github.token }}
214214
steps:

.nanpa/bump-webrtc.kdl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
patch package="webrtc-sys/build" type="added" "bump libwebrtc to m125"
22
patch package="webrtc-sys" type="added" "bump libwebrtc to m125"
3+
patch package="libwebrtc" type="added" "bump libwebrtc to m125"
4+
patch package="livekit" type="added" "bump libwebrtc to m125"
5+
patch package="livekit-ffi" type="added" "bump libwebrtc to m125"

download_ffi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def ffi_version():
7474

7575
def download_ffi(platform, arch, version, output):
7676
filename = "ffi-%s-%s.zip" % (platform, arch)
77-
url = "https://github.com/livekit/client-sdk-rust/releases/download/ffi-v%s/%s"
77+
url = "https://github.com/livekit/client-sdk-rust/releases/download/rust-sdks/livekit-ffi@%s/%s"
7878
url = url % (version, filename)
7979

8080
tmp = os.path.join(tempfile.gettempdir(), filename)

webrtc-sys/build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use regex::Regex;
2626
use reqwest::StatusCode;
2727

2828
pub const SCRATH_PATH: &str = "livekit_webrtc";
29-
pub const WEBRTC_TAG: &str = "webrtc-dac8015-6";
29+
pub const WEBRTC_TAG: &str = "webrtc-b99fd2c";
3030
pub const IGNORE_DEFINES: [&str; 2] = ["CR_CLANG_REVISION", "CR_XCODE_VERSION"];
3131

3232
pub fn target_os() -> String {

0 commit comments

Comments
 (0)