Skip to content

Commit

Permalink
Upgrade to 119.0.6045.105 version (#61)
Browse files Browse the repository at this point in the history
Additionally:
- tune up GitHub Actions code style

Co-authored-by: rogurotus <[email protected]>
Co-authored-by: Kai Ren <[email protected]>
  • Loading branch information
3 people authored Nov 14, 2023
1 parent 7608874 commit a34d8d6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,26 @@ jobs:
arch: x64
- os: windows
arch: x64
runs-on: ${{ ((matrix.os == 'ios' || matrix.os == 'macos') && 'macos-11')
|| (matrix.os == 'windows' && 'windows-2019')
|| 'ubuntu-latest' }}
runs-on: ${{ (contains('ios macos', matrix.os) && 'macos-11')
|| (contains('windows', matrix.os) && 'windows-2019')
|| 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

- run: ./disk_cleanup.sh
if: ${{ matrix.os == 'android' || matrix.os == 'linux' }}
if: ${{ contains('android linux', matrix.os) }}
- run: powershell .\disk_cleanup.bat
if: ${{ matrix.os == 'windows' }}
if: ${{ contains('windows', matrix.os) }}

- run: pip install setuptools
if: ${{ contains('ios macos', matrix.os) }}

- run: make -C docker ${{ matrix.os }}${{ matrix.arch != '' && format('-{0}', matrix.arch) || '' }}
if: ${{ matrix.os == 'android' || matrix.os == 'linux' }}
if: ${{ contains('android linux', matrix.os) }}
- run: make -C build USE_CCACHE=0 ${{ matrix.os }}${{ matrix.arch != '' && format('-{0}', matrix.arch) || '' }}
if: ${{ matrix.os == 'ios' || matrix.os == 'macos' }}
if: ${{ contains('ios macos', matrix.os) }}
- run: powershell .\build.windows.bat
if: ${{ matrix.os == 'windows' }}
if: ${{ contains('windows', matrix.os) }}

- uses: actions/upload-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ CCACHE_VERSION=4.6

# WebRTC doesn't have its own versioning, so we use Chromium versions:
# https://chromiumdash.appspot.com/releases
WEBRTC_VERSION=118.0.5993.117
WEBRTC_VERSION=119.0.6045.105
# Look for the concrete revision for WebRTC in:
# https://chromium.googlesource.com/chromium/src/+/refs/tags/<WEBRTC_VERSION>/DEPS
WEBRTC_COMMIT=d8f2b0380b3ec980af35ce4b92ba6a211ec8c76d
WEBRTC_COMMIT=52bc9f7c1205f4b731ea0289b059f7d240c1e228

PACKAGE_NAMES= \
linux-arm64 \
Expand Down
4 changes: 2 additions & 2 deletions instrumentisto-libwebrtc-bin.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |spec|
spec.name = "instrumentisto-libwebrtc-bin"
spec.version = "118.0.5993.117"
spec.version = "119.0.6045.105"
spec.summary = "Pre-compiled `libwebrtc` library for Darwin used by Medea Flutter-WebRTC."

spec.homepage = "https://github.com/instrumentisto/libwebrtc-bin"
spec.license = { :type => 'BSD', :file => 'WebRTC.xcframework/LICENSE.md' }
spec.author = { 'Instrumentisto Team' => '[email protected]' }
spec.ios.deployment_target = '10.0'

spec.source = { :http => "https://github.com/instrumentisto/libwebrtc-bin/releases/download/118.0.5993.117/libwebrtc-ios.zip" }
spec.source = { :http => "https://github.com/instrumentisto/libwebrtc-bin/releases/download/119.0.6045.105/libwebrtc-ios.zip" }
spec.vendored_frameworks = "WebRTC.xcframework"

spec.pod_target_xcconfig = {
Expand Down

0 comments on commit a34d8d6

Please sign in to comment.