Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 66 additions & 12 deletions ci/builders/windows_android_aot_engine.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
{
"builds": [
{
"archives": [],
"archives": [
{
"base_path": "out/android_profile/zip_archives/",
"type": "gcs",
"include_paths": [
"out/android_profile/zip_archives/android-arm-profile/windows-x64.zip"
],
"name": "android_profile"
}
],
"drone_dimensions": [],
"gn": [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is --goma passed by default, or does it need to go in this list?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"--runtime-mode",
Expand All @@ -12,12 +21,21 @@
"ninja": {
"config": "android_profile",
"targets": [
"gen_snapshot"
"flutter/build/archives:archive_win_gen_snapshot"
]
}
},
{
"archives": [],
"archives": [
{
"base_path": "out/android_profile_arm64/zip_archives/",
"type": "gcs",
"include_paths": [
"out/android_profile_arm64/zip_archives/android-arm64-profile/windows-x64.zip"
],
"name": "android_profile_arm64"
}
],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
Expand All @@ -29,12 +47,21 @@
"ninja": {
"config": "android_profile_arm64",
"targets": [
"gen_snapshot"
"flutter/build/archives:archive_win_gen_snapshot"
]
}
},
{
"archives": [],
"archives": [
{
"base_path": "out/android_profile_x64/zip_archives/",
"type": "gcs",
"include_paths": [
"out/android_profile_x64/zip_archives/android-x64-profile/windows-x64.zip"
],
"name": "android_profile_x64"
}
],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
Expand All @@ -46,12 +73,21 @@
"ninja": {
"config": "android_profile_x64",
"targets": [
"gen_snapshot"
"flutter/build/archives:archive_win_gen_snapshot"
]
}
},
{
"archives": [],
"archives": [
{
"base_path": "out/android_release/zip_archives/",
"type": "gcs",
"include_paths": [
"out/android_release/zip_archives/android-arm-release/windows-x64.zip"
],
"name": "android_release"
}
],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
Expand All @@ -62,12 +98,21 @@
"ninja": {
"config": "android_release",
"targets": [
"gen_snapshot"
"flutter/build/archives:archive_win_gen_snapshot"
]
}
},
{
"archives": [],
"archives": [
{
"base_path": "out/android_release_arm64/zip_archives/",
"type": "gcs",
"include_paths": [
"out/android_release_arm64/zip_archives/android-arm64-release/windows-x64.zip"
],
"name": "android_release_arm64"
}
],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
Expand All @@ -79,12 +124,21 @@
"ninja": {
"config": "android_release_arm64",
"targets": [
"gen_snapshot"
"flutter/build/archives:archive_win_gen_snapshot"
]
}
},
{
"archives": [],
"archives": [
{
"base_path": "out/android_release_x64/zip_archives/",
"type": "gcs",
"include_paths": [
"out/android_release_x64/zip_archives/android-x64-release/windows-x64.zip"
],
"name": "android_release_x64"
}
],
"drone_dimensions": [],
"gn": [
"--runtime-mode",
Expand All @@ -96,7 +150,7 @@
"ninja": {
"config": "android_release_x64",
"targets": [
"gen_snapshot"
"flutter/build/archives:archive_win_gen_snapshot"
]
}
}
Expand Down