| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. |
| 4 |
| 5 syntax = "proto3"; |
| 6 |
| 7 package swarmingV1; |
| 8 |
| 9 message CipdPackage { |
| 10 string name = 1; |
| 11 string version = 2; |
| 12 } |
| 13 |
| 14 message CipdSpec { |
| 15 // Server to use for cipd packages. Required (though it may be specified |
| 16 // by the quest's designated distributor config). This must be |
| 17 // scheme://<hostname>, e.g. "https://example.appspot.com". The only |
| 18 // supported schemes are http and https. |
| 19 string server = 1; |
| 20 |
| 21 // Specifies the CIPD package to use for the job to obtain the actual CIPD |
| 22 // client binary. You usually want to omit this. |
| 23 CipdPackage client = 2; |
| 24 |
| 25 message CipdPackages { |
| 26 repeated CipdPackage pkg = 1; |
| 27 } |
| 28 // A mapping from path-to-install to a list of cipd packages to install at |
| 29 // that location. To install packages in the root of the job, use the path |
| 30 // ''. |
| 31 map<string, CipdPackages> by_path = 3; |
| 32 } |
| OLD | NEW |