Chromium Code Reviews| Index: appengine/cr-buildbucket/proto/project_config.proto |
| diff --git a/appengine/cr-buildbucket/proto/project_config.proto b/appengine/cr-buildbucket/proto/project_config.proto |
| index 0edc1849d315274899765781e92c558b4cfc67e0..60ae4d523b48ae16a05957ccac7182d8a0f0b27b 100644 |
| --- a/appengine/cr-buildbucket/proto/project_config.proto |
| +++ b/appengine/cr-buildbucket/proto/project_config.proto |
| @@ -37,7 +37,17 @@ message Swarming { |
| optional string name = 2; |
| // colon-separated build properties to set. |
| // A property can be overriden by "properties" build parameter. |
| + // |
| + // Use this field for string properties and use properties_j for other |
| + // types. |
| repeated string properties = 3; |
| + // Same as properties, but the value must valid JSON. For example |
|
Vadim Sh.
2016/06/28 00:10:35
is it allowed to have "a:{\"b\":\"c\"}"?
nodir
2016/06/28 00:42:38
yes, not prohibited, but not encouraged either (by
|
| + // properties_j: "a:1" |
| + // means property a is a number 1, not string "1". |
| + // |
| + // Fields properties and properties_j can be used together, but cannot both |
| + // specify values for same property. |
| + repeated string properties_j = 4; |
| } |
| message Builder { |