Skip to content

Commit

Permalink
Adding archives to the windows host engine. (flutter#31821)
Browse files Browse the repository at this point in the history
  • Loading branch information
godofredoc authored Mar 4, 2022
1 parent 018d7c5 commit ff6f547
Showing 1 changed file with 47 additions and 6 deletions.
53 changes: 47 additions & 6 deletions ci/builders/windows_host_engine.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
{
"builds": [
{
"archives": [],
"archives": [
{
"base_path": "out/host_debug/zip_archives/",
"include_paths": [
"out/host_debug/zip_archives/windows-x64/artifacts.zip",
"out/host_debug/zip_archives/windows-x64/windows-x64-embedder.zip",
"out/host_debug/zip_archives/windows-x64-debug/windows-x64-flutter.zip",
"out/host_debug/zip_archives/windows-x64/flutter-cpp-client-wrapper.zip",
"out/host_debug/zip_archives/windows-x64/font-subset.zip",
"out/host_debug/zip_archives/dart-sdk-windows-x64.zip",
"out/host_debug/zip_archives/flutter-web-sdk-linux-x64.zip"
],
"name": "host_debug"
}
],
"drone_dimensions": [
"device_type=none",
"os=Windows-10"
Expand All @@ -18,7 +32,16 @@
"name": "host_debug",
"ninja": {
"config": "host_debug",
"targets": []
"targets": [
"flutter:unittests",
"flutter/build/archives:artifacts",
"flutter/build/archives:embedder",
"flutter/tools/font-subset",
"flutter/build/archives:dart_sdk_archive",
"flutter/shell/platform/windows/client_wrapper:client_wrapper_archive",
"flutter/build/archives:windows_flutter",
"flutter/build/archives:flutter_web_sdk"
]
},
"tests": [
{
Expand All @@ -36,7 +59,15 @@
]
},
{
"archives": [],
"archives": [
{
"base_path": "out/host_profile/zip_archives/",
"include_paths": [
"out/host_profile/zip_archives/windows-x64-profile/windows-x64-flutter.zip"
],
"name": "host_profile"
}
],
"drone_dimensions": [
"device_type=none",
"os=Windows-10"
Expand All @@ -54,13 +85,22 @@
"config": "host_profile",
"targets": [
"windows",
"gen_snapshot"
"gen_snapshot",
"flutter/build/archives:windows_flutter"
]
},
"tests": []
},
{
"archives": [],
"archives": [
{
"base_path": "out/host_release/zip_archives/",
"include_paths": [
"out/host_release/zip_archives/windows-x64-release/windows-x64-flutter.zip"
],
"name": "host_profile"
}
],
"drone_dimensions": [
"device_type=none",
"os=Windows-10"
Expand All @@ -79,7 +119,8 @@
"config": "host_release",
"targets": [
"windows",
"gen_snapshot"
"gen_snapshot",
"flutter/build/archives:windows_flutter"
]
},
"tests": []
Expand Down

0 comments on commit ff6f547

Please sign in to comment.