-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump NDK version * Revert "bump NDK version" This reverts commit 93784b8. * composite action to free up space * moved action * checkout then free up space * using statement * composite * missing free space for ios_android.yml * xcode 15.4 as default * up RNTA, fix metro.config.js * fix double copy/paste * upload artifact acion
- Loading branch information
1 parent
edbc555
commit 8df011d
Showing
10 changed files
with
71 additions
and
40 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 |
---|---|---|
|
@@ -16,6 +16,8 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: 'recursive' | ||
- name: Free space | ||
uses: ./.github/workflows/macos_freespace | ||
- name: Setup Node 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
@@ -55,6 +57,8 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: 'recursive' | ||
- name: Free space | ||
uses: ./.github/workflows/macos_freespace | ||
- name: Setup Node 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
type: string | ||
xcode-version: | ||
type: string | ||
default: '15.0.1' | ||
default: '15.4' | ||
|
||
jobs: | ||
Build: | ||
|
@@ -21,6 +21,8 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: 'recursive' | ||
- name: Free space | ||
uses: ./.github/workflows/macos_freespace | ||
- name: Setup Node 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
@@ -54,12 +56,12 @@ jobs: | |
env: | ||
JAVA_HOME: ${{ env.JAVA_HOME_11_X64 }} | ||
- name: Upload Assembled iOS Android Folder | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'Assembled-iOSAndroid${{ inputs.react-native-version }}' | ||
path: Package/Assembled-iOSAndroid | ||
- name: Upload Assembled iOS Android BaseKit Folder | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'Assembled-BaseKit-iOSAndroid${{ inputs.react-native-version }}' | ||
path: Package/Assembled-BaseKit-iOSAndroid |
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,15 @@ | ||
name: Free up disk space | ||
description: Free up disk space see https://github.com/actions/runner-images/issues/10511 | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Free up disk space | ||
shell: bash | ||
run: | | ||
xcrun simctl delete all | ||
sudo rm -rf ~/Library/Developer/CoreSimulator/Caches/* | ||
sudo rm -rf /Applications/Xcode_14.3.1.app | ||
sudo rm -rf /Applications/Xcode_15.0.1.app | ||
sudo rm -rf /Applications/Xcode_15.1.app | ||
sudo rm -rf /Applications/Xcode_15.2.app | ||
sudo rm -rf /Applications/Xcode_15.3.app |
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 |
---|---|---|
|
@@ -14,6 +14,8 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: 'recursive' | ||
- name: Free space | ||
uses: ./.github/workflows/macos_freespace | ||
- name: Setup Node 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
@@ -52,6 +54,8 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: 'recursive' | ||
- name: Free space | ||
uses: ./.github/workflows/macos_freespace | ||
- name: Setup CMake | ||
uses: jwlawson/[email protected] | ||
with: | ||
|
@@ -90,6 +94,8 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: 'recursive' | ||
- name: Free space | ||
uses: ./.github/workflows/macos_freespace | ||
- name: Setup Node 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
@@ -114,6 +120,8 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: 'recursive' | ||
- name: Free space | ||
uses: ./.github/workflows/macos_freespace | ||
- name: Setup Watchman | ||
run: brew install watchman | ||
|
||
|
@@ -139,6 +147,8 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: 'recursive' | ||
- name: Free space | ||
uses: ./.github/workflows/macos_freespace | ||
- name: Setup Node 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
@@ -323,4 +333,4 @@ jobs: | |
build-typescript: | ||
uses: ./.github/workflows/typescript.yml | ||
with: | ||
release-version: 0.0.${GITHUB_SHA::8} | ||
release-version: 0.0.${GITHUB_SHA::8} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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