File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,10 @@ an `options` field.
54
54
"options" : {
55
55
"compiler" : " dartk" ,
56
56
"mode" : " release" ,
57
- }},
57
+ }
58
+ },
58
59
```
59
60
60
-
61
61
### Builder Configurations
62
62
63
63
The builder configurations describes all test configurations a specific builder
@@ -131,6 +131,19 @@ option. Options can be runtimes (e.g. "chrome"), architectures (e.g. x64) and
131
131
operating system families (e.g. win). For each valid option, additional
132
132
arguments are passed to the ` tools/build.py ` script.
133
133
134
+ Parsing of builder names is done in [ 1] . A name like
135
+ "front-end-nnbd-win-release-x64" is parsed into variables:
136
+
137
+ - ` info ` : ` "front-end-nnbd" `
138
+ - ` os ` : ` "win" `
139
+ - ` mode ` : ` "release" `
140
+ - ` arch ` : ` "x64" `
141
+
142
+ Valid values of these variables are defined in [ 2] .
143
+
144
+ [ 1 ] : https://dart.googlesource.com/recipes/+/535cf6e8ef1e11449acfc13c7bc61a530b765bd8/recipe_modules/dart/api.py#886
145
+ [ 2 ] : https://dart.googlesource.com/recipes/+/535cf6e8ef1e11449acfc13c7bc61a530b765bd8/recipe_modules/dart/__init__.py
146
+
134
147
### Adding a new builder
135
148
To add a builder:
136
149
You can’t perform that action at this time.
0 commit comments