Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: dm/api/distributor/swarming/v1/cipd.proto

Issue 2338153003: Add snapshotting for CIPD packages and dimensions to DM. (Closed)
Patch Set: Fix comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « dm/api/distributor/swarming/v1/cipd.go ('k') | dm/api/distributor/swarming/v1/cipd.pb.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « dm/api/distributor/swarming/v1/cipd.go ('k') | dm/api/distributor/swarming/v1/cipd.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698