-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[ci] Split build_all_packages by JDK version. #7106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
stuartmorgan-g
merged 6 commits into
flutter:main
from
ditman:split-java17-build-all-ci
Jul 12, 2024
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
85a9b43
Split legacy/modern builds for all_packages in master.
ditman 1b4a5a4
Mark new builder as bringup true.
ditman 5af0090
Split the legacy workflow as bringup:true.
ditman 4d1431c
Add the builder to stable as well, to save some time in the future.
ditman 6e5f0f4
Remove from recipes CQ
stuartmorgan-g 0ea4d64
Add a comment about re-merging later
stuartmorgan-g File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,14 @@ | ||
# This only builds the modern all_packages app, which requires jdk17+ | ||
tasks: | ||
- name: prepare tool | ||
script: .ci/scripts/prepare_tool.sh | ||
infra_step: true # Note infra steps failing prevents "always" from running. | ||
- name: create all_packages app | ||
script: .ci/scripts/create_all_packages_app.sh | ||
infra_step: true # Note infra steps failing prevents "always" from running. | ||
- name: build all_packages for Android debug | ||
script: .ci/scripts/build_all_packages_app.sh | ||
args: ["apk", "debug"] | ||
- name: build all_packages for Android release | ||
script: .ci/scripts/build_all_packages_app.sh | ||
args: ["apk", "release"] |
This file contains hidden or 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,17 @@ | ||
# This only builds the legacy all_packages app, which requires jdk11 | ||
tasks: | ||
- name: prepare tool | ||
script: .ci/scripts/prepare_tool.sh | ||
infra_step: true # Note infra steps failing prevents "always" from running. | ||
- name: create all_packages app - legacy version | ||
script: .ci/scripts/create_all_packages_app_legacy.sh | ||
# Output dir; must match the final argument to build_all_packages_app_legacy | ||
# below. | ||
args: ["legacy"] | ||
# Only build legacy in one mode, to minimize extra CI time. Debug is chosen | ||
# somewhat arbitrarily as likely being slightly faster. | ||
- name: build all_packages for Android - legacy version | ||
script: .ci/scripts/build_all_packages_app_legacy.sh | ||
# The final argument here must match the output directory passed to | ||
# create_all_packages_app_legacy above. | ||
args: ["apk", "debug", "legacy"] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.