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

Commit 3f6a278

Browse files
authored
Migrate mac_unopt to engine_v2. (#40860)
Migrate mac_unopt to engine_v2.
1 parent ef4e101 commit 3f6a278

File tree

2 files changed

+125
-0
lines changed

2 files changed

+125
-0
lines changed

.ci.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,13 @@ targets:
362362
$flutter/osx_sdk : >-
363363
{ "sdk_version": "14a5294e" }
364364
365+
- name: Mac mac_unopt
366+
bringup: true
367+
recipe: engine_v2/engine_v2
368+
properties:
369+
config_name: mac_unopt
370+
add_recipes_cq: "true"
371+
365372
- name: Mac Unopt
366373
recipe: engine/engine_unopt
367374
properties:

ci/builders/mac_unopt.json

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
{
2+
"builds": [
3+
{
4+
"archives": [
5+
{
6+
"base_path": "out/host_debug_unopt/zip_archives/",
7+
"type": "gcs",
8+
"include_paths": [
9+
],
10+
"name": "host_debug_unopt"
11+
}
12+
],
13+
"drone_dimensions": [
14+
"device_type=none",
15+
"os=Mac-12",
16+
"cpu=x86"
17+
],
18+
"gclient_custom_vars": {
19+
"download_android_deps": false
20+
},
21+
"gn": [
22+
"--runtime-mode",
23+
"debug",
24+
"--unoptimized",
25+
"--no-lto",
26+
"--prebuilt-dart-sdk"
27+
],
28+
"name": "host_debug_unopt",
29+
"ninja": {
30+
"config": "host_debug_unopt",
31+
"targets": [
32+
]
33+
},
34+
"tests": [
35+
{
36+
"language": "python3",
37+
"name": "Host Tests for host_debug_unopt",
38+
"parameters": [
39+
"--variant",
40+
"host_debug_unopt",
41+
"--type",
42+
"dart,engine",
43+
"--engine-capture-core-dump"
44+
],
45+
"script": "flutter/testing/run_tests.py",
46+
"type": "local"
47+
}
48+
]
49+
},
50+
{
51+
"archives": [
52+
{
53+
"base_path": "out/ios_debug_sim/zip_archives/",
54+
"type": "gcs",
55+
"include_paths": [
56+
],
57+
"name": "ios_debug_sim"
58+
}
59+
],
60+
"properties": {
61+
"$flutter/osx_sdk": {
62+
"runtime_versions": [ "ios-16-0_14a5294e" ],
63+
"sdk_version": "14a5294e"
64+
}
65+
},
66+
"drone_dimensions": [
67+
"device_type=none",
68+
"os=Mac-12",
69+
"cpu=x86"
70+
],
71+
"gclient_custom_vars": {
72+
"download_android_deps": false
73+
},
74+
"gn": [
75+
"--ios",
76+
"--runtime-mode",
77+
"debug",
78+
"--simulator",
79+
"--no-lto"
80+
],
81+
"name": "ios_debug_sim",
82+
"ninja": {
83+
"config": "ios_debug_sim",
84+
"targets": [
85+
"flutter/testing/scenario_app",
86+
"flutter/shell/platform/darwin/ios:ios_test_flutter"
87+
]
88+
},
89+
"tests": [
90+
{
91+
"language": "python3",
92+
"name": "Tests for ios_debug_sim",
93+
"parameters": [
94+
"--variant",
95+
"ios_debug_sim",
96+
"--type",
97+
"objc",
98+
"--engine-capture-core-dump",
99+
"--ios-variant",
100+
"ios_debug_sim"
101+
],
102+
"script": "flutter/testing/run_tests.py",
103+
"type": "local"
104+
},
105+
{
106+
"name": "Scenario App Integration Tests",
107+
"parameters": [
108+
"ios_debug_sim"
109+
],
110+
"script": "flutter/testing/scenario_app/run_ios_tests.sh",
111+
"type": "local"
112+
}
113+
114+
]
115+
}
116+
],
117+
"tests": []
118+
}

0 commit comments

Comments
 (0)