forked from crow-misia/libwebrtc-bin
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to 128.0.6613.113 version (#118)
Additionally: - cleanup macOS runners on CI Co-authored-by: evdokimovs <[email protected]>
- Loading branch information
1 parent
10d94d5
commit ef575ce
Showing
4 changed files
with
53 additions
and
4 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
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,47 @@ | ||
#!/bin/bash | ||
|
||
df -h | ||
|
||
# Homebrew cache and unused packages | ||
brew cleanup | ||
brew autoremove | ||
rm -rf $(brew --cache) | ||
|
||
# XCode simulators | ||
sudo rm -rf ~/Library/Developer/Xcode/iOS\ DeviceSupport/* | ||
sudo rm -rf ~/Library/Developer/CoreSimulator/Caches/* | ||
sudo rm -rf ~/Library/Developer/CoreSimulator/Devices/* | ||
|
||
# .NET SDK and runtimes | ||
sudo rm -rf /usr/local/share/dotnet | ||
sudo rm -rf ~/.dotnet | ||
|
||
# Haskell (GHC) | ||
sudo rm -rf ~/.ghcup | ||
sudo rm -rf /opt/ghc | ||
|
||
# Swift | ||
sudo rm -rf /usr/share/swift | ||
|
||
# Android SDK | ||
sudo rm -rf ~/Library/Android/sdk | ||
|
||
# Python environments and pip cache | ||
sudo rm -rf ~/.pyenv | ||
sudo rm -rf ~/Library/Caches/pip | ||
|
||
# Node.js and NPM cache | ||
sudo rm -rf ~/.npm | ||
sudo rm -rf ~/.node-gyp | ||
sudo rm -rf ~/.nvm | ||
|
||
# Ruby gems and cache | ||
sudo rm -rf ~/.gem | ||
sudo rm -rf ~/.rbenv | ||
|
||
# Temporary files | ||
sudo rm -rf /tmp/* | ||
sudo rm -rf /private/var/tmp/* | ||
sudo rm -rf /var/folders/* | ||
|
||
df -h |
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,14 +1,14 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = "instrumentisto-libwebrtc-bin" | ||
spec.version = "128.0.6613.84" | ||
spec.version = "128.0.6613.113" | ||
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/128.0.6613.84/libwebrtc-ios.zip" } | ||
spec.source = { :http => "https://github.com/instrumentisto/libwebrtc-bin/releases/download/128.0.6613.113/libwebrtc-ios.zip" } | ||
spec.vendored_frameworks = "WebRTC.xcframework" | ||
|
||
spec.pod_target_xcconfig = { | ||
|