-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: upgrade runners on release/continuous
- Previously we also split Android build into 3, but because we get larger disk with large runners, we combine them again.
- Loading branch information
Showing
6 changed files
with
14 additions
and
34 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 |
---|---|---|
|
@@ -8,35 +8,15 @@ on: | |
- rc/** | ||
|
||
jobs: | ||
build-android-armv7: | ||
build-android: | ||
name: build-android-armv7 | ||
runs-on: macos-14 | ||
# We intentially use a larger runner here to enable larger disk space | ||
# (standard linux runner will fail on disk space and faster build time). | ||
runs-on: ubuntu-22.04-32core | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- name: Run Android Continuous | ||
uses: ./.github/actions/android-continuous | ||
with: | ||
build-abi: armeabi-v7a | ||
|
||
build-android-armv8a: | ||
name: build-android-armv8a | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- name: Run Android Continuous | ||
uses: ./.github/actions/android-continuous | ||
with: | ||
build-abi: arm64-v8a | ||
|
||
build-android-x86_64: | ||
name: build-android-x86_64 | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- name: Run Android Continuous | ||
uses: ./.github/actions/android-continuous | ||
with: | ||
build-abi: x86_64 | ||
build-abi: armeabi-v7a,arm64-v8a,x86_64 |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
jobs: | ||
build-ios: | ||
name: build-ios | ||
runs-on: macos-14 | ||
runs-on: macos-14-xlarge | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
jobs: | ||
build-linux: | ||
name: build-linux | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-22.04-16core | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
jobs: | ||
build-mac: | ||
name: build-mac | ||
runs-on: macos-14 | ||
runs-on: macos-14-xlarge | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
jobs: | ||
build-web: | ||
name: build-web | ||
runs-on: macos-14 | ||
runs-on: ubuntu-22.04-16core | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|