From a34d8d637e7bb9f2463fc066914d0ea5f4e8c257 Mon Sep 17 00:00:00 2001 From: "[Bot] Instrumentisto" <57999751+instrumentisto-bot@users.noreply.github.com> Date: Tue, 14 Nov 2023 19:50:43 +0100 Subject: [PATCH] Upgrade to 119.0.6045.105 version (#61) Additionally: - tune up GitHub Actions code style Co-authored-by: rogurotus Co-authored-by: Kai Ren --- .github/workflows/ci.yml | 19 +++++++++++-------- VERSION | 4 ++-- instrumentisto-libwebrtc-bin.podspec | 4 ++-- 3 files changed, 15 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7345af2..33b7adee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/VERSION b/VERSION index bc31549c..d9a6f5a2 100644 --- a/VERSION +++ b/VERSION @@ -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//DEPS -WEBRTC_COMMIT=d8f2b0380b3ec980af35ce4b92ba6a211ec8c76d +WEBRTC_COMMIT=52bc9f7c1205f4b731ea0289b059f7d240c1e228 PACKAGE_NAMES= \ linux-arm64 \ diff --git a/instrumentisto-libwebrtc-bin.podspec b/instrumentisto-libwebrtc-bin.podspec index a6256b60..f22e615f 100644 --- a/instrumentisto-libwebrtc-bin.podspec +++ b/instrumentisto-libwebrtc-bin.podspec @@ -1,6 +1,6 @@ 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" @@ -8,7 +8,7 @@ Pod::Spec.new do |spec| spec.author = { 'Instrumentisto Team' => 'developer@instrumentisto.com' } 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 = {