-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add react-native 0.74 support (#202)
# Why add react native 0.74 and expo sdk 51 support # How - [v8runtime] add stub `setExternalMemoryPressure()` - [android] fix build error on 0.74 - [ios] update config-plugin to support 0.74 from RCTRootViewFactory - [ci] update test for react-native 0.74 and expo sdk 51
- Loading branch information
Showing
12 changed files
with
289 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# | ||
# Copyright (c) 650 Industries. | ||
# | ||
|
||
name: 'Cleanup GitHub Linux Runner Disk Space' | ||
description: 'Cleanup unused preinstalled packages on the GitHub Ubuntu runners' | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: '🧹 Cleanup preinstalled packages' | ||
shell: bash | ||
run: | | ||
echo 'Disk space before cleanup' | ||
df -aH | ||
sudo apt-get remove -y --purge '^mysql-.*' '^mongodb-.*' '^mssql-.*' '^postgresql-.*' '^aspnetcore-*' '^dotnet-.*' '^php.*-.*' 'mono-complete' '^llvm-.*' 'powershell' 'google-chrome-*' 'microsoft-edge-*' 'firefox' 'nginx' 'apache2' | ||
sudo apt-get autoremove -y | ||
sudo rm -rf /usr/share/dotnet | ||
echo 'Showing Android SDKs' | ||
${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --list | ||
${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --uninstall 'ndk;24.0.8215888' 'ndk;25.2.9519653' 'ndk;26.2.11394342' | ||
echo 'Removing all Docker images' | ||
docker rmi -f $(docker images -aq) | ||
echo 'Disk space after cleanup' | ||
df -aH |
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
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
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
Oops, something went wrong.