Skip to content

Commit

Permalink
chore: update webrtc and all dependents (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbsp authored Dec 11, 2024
1 parent a1b926e commit a0a961b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ffi-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
push:
branches: ["main"]
tags:
- "ffi-v*"
- "rust-sdks/livekit-ffi@*"
workflow_dispatch:

env:
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
needs: build
permissions:
contents: write
if: startsWith(github.ref, 'refs/tags/ffi-v')
if: startsWith(github.ref, 'refs/tags/rust-sdks/livekit-ffi')
env:
GH_TOKEN: ${{ github.token }}
steps:
Expand Down
3 changes: 3 additions & 0 deletions .nanpa/bump-webrtc.kdl
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
patch package="webrtc-sys/build" type="added" "bump libwebrtc to m125"
patch package="webrtc-sys" type="added" "bump libwebrtc to m125"
patch package="libwebrtc" type="added" "bump libwebrtc to m125"
patch package="livekit" type="added" "bump libwebrtc to m125"
patch package="livekit-ffi" type="added" "bump libwebrtc to m125"
2 changes: 1 addition & 1 deletion download_ffi.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def ffi_version():

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

tmp = os.path.join(tempfile.gettempdir(), filename)
Expand Down
2 changes: 1 addition & 1 deletion webrtc-sys/build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use regex::Regex;
use reqwest::StatusCode;

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

pub fn target_os() -> String {
Expand Down

0 comments on commit a0a961b

Please sign in to comment.