Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 20034a8

Browse files
authored
Reland "Migrate mac_host_engine to engine v2 builds." (#41279)
Reverts #41233 The issue this PR was reverted was not replicable. On top of that we added extra precautions to ensure global generators are using left over binaries from out folder. https://flutter-review.googlesource.com/c/recipes/+/41960
1 parent 1c1dfda commit 20034a8

File tree

2 files changed

+27
-13
lines changed

2 files changed

+27
-13
lines changed

.ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@ targets:
332332
timeout: 60
333333

334334
- name: Mac Host Engine
335+
bringup: true
335336
recipe: engine/engine
336337
properties:
337338
gclient_variables: >-

ci/builders/mac_host_engine.json

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"out/host_debug/zip_archives/darwin-x64/FlutterEmbedder.framework.zip",
1111
"out/host_debug/zip_archives/dart-sdk-darwin-x64.zip"
1212
],
13-
"name": "host_debug"
13+
"name": "host_debug",
14+
"realm": "production"
1415
}
1516
],
1617
"drone_dimensions": [
@@ -67,7 +68,8 @@
6768
"include_paths": [
6869
"out/host_profile/zip_archives/darwin-x64-profile/artifacts.zip"
6970
],
70-
"name": "host_profile"
71+
"name": "host_profile",
72+
"realm": "production"
7173
}
7274
],
7375
"drone_dimensions": [
@@ -122,7 +124,8 @@
122124
"out/host_release/zip_archives/darwin-x64-release/artifacts.zip",
123125
"out/host_release/zip_archives/darwin-x64/font-subset.zip"
124126
],
125-
"name": "host_release"
127+
"name": "host_release",
128+
"realm": "production"
126129
}
127130
],
128131
"drone_dimensions": [
@@ -184,7 +187,8 @@
184187
"out/mac_debug_arm64/zip_archives/darwin-arm64/artifacts.zip",
185188
"out/mac_debug_arm64/zip_archives/dart-sdk-darwin-arm64.zip"
186189
],
187-
"name": "mac_debug_arm64"
190+
"name": "mac_debug_arm64",
191+
"realm": "production"
188192
}
189193
],
190194
"drone_dimensions": [
@@ -225,7 +229,8 @@
225229
"include_paths": [
226230
"out/mac_profile_arm64/zip_archives/darwin-arm64-profile/artifacts.zip"
227231
],
228-
"name": "mac_profile_arm64"
232+
"name": "mac_profile_arm64",
233+
"realm": "production"
229234
}
230235
],
231236
"drone_dimensions": [
@@ -264,7 +269,8 @@
264269
"out/mac_release_arm64/zip_archives/darwin-arm64/font-subset.zip",
265270
"out/mac_release_arm64/zip_archives/darwin-arm64-release/artifacts.zip"
266271
],
267-
"name": "mac_release_arm64"
272+
"name": "mac_release_arm64",
273+
"realm": "production"
268274
}
269275
],
270276
"drone_dimensions": [
@@ -392,31 +398,38 @@
392398
"archives": [
393399
{
394400
"source": "out/release/framework/FlutterMacOS.dSYM.zip",
395-
"destination": "darwin-x64-release/FlutterMacOS.dSYM.zip"
401+
"destination": "darwin-x64-release/FlutterMacOS.dSYM.zip",
402+
"realm": "production"
396403
},
397404
{
398405
"source": "out/debug/framework/FlutterMacOS.framework.zip",
399-
"destination": "darwin-x64/FlutterMacOS.framework.zip"
406+
"destination": "darwin-x64/FlutterMacOS.framework.zip",
407+
"realm": "production"
400408
},
401409
{
402410
"source": "out/profile/framework/FlutterMacOS.framework.zip",
403-
"destination": "darwin-x64-profile/FlutterMacOS.framework.zip"
411+
"destination": "darwin-x64-profile/FlutterMacOS.framework.zip",
412+
"realm": "production"
404413
},
405414
{
406415
"source": "out/release/framework/FlutterMacOS.framework.zip",
407-
"destination": "darwin-x64-release/FlutterMacOS.framework.zip"
416+
"destination": "darwin-x64-release/FlutterMacOS.framework.zip",
417+
"realm": "production"
408418
},
409419
{
410420
"source": "out/debug/snapshot/gen_snapshot.zip",
411-
"destination": "darwin-x64/gen_snapshot.zip"
421+
"destination": "darwin-x64/gen_snapshot.zip",
422+
"realm": "production"
412423
},
413424
{
414425
"source": "out/profile/snapshot/gen_snapshot.zip",
415-
"destination": "darwin-x64-profile/gen_snapshot.zip"
426+
"destination": "darwin-x64-profile/gen_snapshot.zip",
427+
"realm": "production"
416428
},
417429
{
418430
"source": "out/release/snapshot/gen_snapshot.zip",
419-
"destination": "darwin-x64-release/gen_snapshot.zip"
431+
"destination": "darwin-x64-release/gen_snapshot.zip",
432+
"realm": "production"
420433
}
421434
]
422435
}

0 commit comments

Comments
 (0)