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

Side by Side Diff: deploytool/api/deploy/checkout.proto

Issue 2182213002: deploytool: Add README.md, migrate docs to it. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Rename to "luci_deploy" Created 4 years, 4 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 | « deploytool/README.md ('k') | deploytool/api/deploy/checkout.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
1 // Copyright 2016 The LUCI Authors. All rights reserved. 1 // Copyright 2016 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed under the Apache License, Version 2.0 2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file. 3 // that can be found in the LICENSE file.
4 4
5 syntax = "proto3"; 5 syntax = "proto3";
6 6
7 package deploy; 7 package deploy;
8 8
9 /** 9 /**
10 * Source layout configuration file. 10 * Source layout configuration file.
11 * 11 *
12 * Each Source checkout may include a textproto layout file named 12 * Each Source checkout may include a textproto layout file named
13 * "luci-deploytool.cfg". If present, this file will be loaded and used to 13 * "luci-deploy.cfg". If present, this file will be loaded and used to
14 * integrate the source into the deployment. 14 * integrate the source into the deployment.
15 * 15 *
16 * Uncooperative repositories, or those not owned by the author, may have the 16 * Uncooperative repositories, or those not owned by the author, may have the
17 * same effect by specifying the SourceLayout in the Source's layout definition. 17 * same effect by specifying the SourceLayout in the Source's layout definition.
18 */ 18 */
19 message SourceLayout { 19 message SourceLayout {
20 /** 20 /**
21 * Init is a single initialization operation execution. 21 * Init is a single initialization operation execution.
22 */ 22 */
23 message Init { 23 message Init {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 * 75 *
76 * For example, given checkout: 76 * For example, given checkout:
77 * path: gosrc/my/thing 77 * path: gosrc/my/thing
78 * go_package: github.com/example/mything 78 * go_package: github.com/example/mything
79 * 79 *
80 * This will add a GOPATH entry: 80 * This will add a GOPATH entry:
81 * src/github.com/example/mything => <root>/gosrc/my/thing 81 * src/github.com/example/mything => <root>/gosrc/my/thing
82 */ 82 */
83 string go_package = 2; 83 string go_package = 2;
84 } 84 }
OLDNEW
« no previous file with comments | « deploytool/README.md ('k') | deploytool/api/deploy/checkout.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698