OLD | NEW |
---|---|
1 # Commit Queue configuration file. The documentation of the format can be found | 1 # Commit Queue configuration file. The documentation of the format can be found |
2 # at http://luci-config.appspot.com/schemas/projects/refs:cq.cfg. | 2 # at http://luci-config.appspot.com/schemas/projects/refs:cq.cfg. |
3 | 3 |
4 version: 1 | 4 version: 1 |
5 cq_name: "depot_tools" | 5 cq_name: "depot_tools" |
6 cq_status_url: "https://chromium-cq-status.appspot.com" | 6 cq_status_url: "https://chromium-cq-status.appspot.com" |
7 svn_repo_url: "svn://svn.chromium.org/chrome/trunk/tools/depot_tools" | |
Sergey Berezin
2016/06/06 21:31:35
Should it be replaced with git_repo_url: ...?
agable
2016/06/06 21:33:52
You'd think, but in the absence of that it is just
Sergey Berezin
2016/06/06 21:48:31
Ah, cool, good to know. Thanks!
| |
8 | 7 |
9 rietveld { | 8 rietveld { |
10 url: "https://codereview.chromium.org" | 9 url: "https://codereview.chromium.org" |
11 project_bases: "^svn\\:\\/\\/svn\\.chromium\\.org\\/chrome/trunk/tools/depot_t ools(|/.*)$" | |
12 project_bases: "^svn\\:\\/\\/chrome\\-svn\\/chrome/trunk/tools/depot_tools(|/. *)$" | |
13 project_bases: "^svn\\:\\/\\/chrome\\-svn\\.corp\\/chrome/trunk/tools/depot_to ols(|/.*)$" | |
14 project_bases: "^svn\\:\\/\\/chrome\\-svn\\.corp\\.google\\.com\\/chrome/trunk /tools/depot_tools(|/.*)$" | |
15 project_bases: "^http\\:\\/\\/src\\.chromium\\.org\\/svn/trunk/tools/depot_too ls(|/.*)$" | |
16 project_bases: "^https\\:\\/\\/src\\.chromium\\.org\\/svn/trunk/tools/depot_to ols(|/.*)$" | |
17 project_bases: "^http\\:\\/\\/src\\.chromium\\.org\\/chrome/trunk/tools/depot_ tools(|/.*)$" | |
18 project_bases: "^https\\:\\/\\/src\\.chromium\\.org\\/chrome/trunk/tools/depot _tools(|/.*)$" | |
19 project_bases: "^https?\\:\\/\\/git\\.chromium\\.org\\/git\\/chromium\\/tools\ \/depot_tools(?:\\.git)?\\@[a-zA-Z0-9\\-_\\.]+$" | |
20 project_bases: "^https?\\:\\/\\/git\\.chromium\\.org\\/chromium\\/tools\\/depo t_tools(?:\\.git)?\\@[a-zA-Z0-9\\-_\\.]+$" | |
21 project_bases: "^https?\\:\\/\\/chromium\\.googlesource\\.com\\/chromium\\/too ls\\/depot_tools(?:\\.git)?\\@[a-zA-Z0-9\\-_\\.]+$" | 10 project_bases: "^https?\\:\\/\\/chromium\\.googlesource\\.com\\/chromium\\/too ls\\/depot_tools(?:\\.git)?\\@[a-zA-Z0-9\\-_\\.]+$" |
22 project_bases: "^https?\\:\\/\\/chromium\\.googlesource\\.com\\/a\\/chromium\\ /tools\\/depot_tools(?:\\.git)?\\@[a-zA-Z0-9\\-_\\.]+$" | 11 project_bases: "^https?\\:\\/\\/chromium\\.googlesource\\.com\\/a\\/chromium\\ /tools\\/depot_tools(?:\\.git)?\\@[a-zA-Z0-9\\-_\\.]+$" |
23 } | 12 } |
24 | 13 |
25 verifiers { | 14 verifiers { |
26 reviewer_lgtm { | 15 reviewer_lgtm { |
27 committer_list: "project-infra-committers" | 16 committer_list: "project-infra-committers" |
28 } | 17 } |
29 | 18 |
30 try_job { | 19 try_job { |
31 buckets { | 20 buckets { |
32 name: "tryserver.infra" | 21 name: "tryserver.infra" |
33 builders { | 22 builders { |
34 name: "Depot Tools Presubmit" | 23 name: "Depot Tools Presubmit" |
35 } | 24 } |
36 builders { | 25 builders { |
37 name: "Recipe Roll Downstream Tester" | 26 name: "Recipe Roll Downstream Tester" |
38 experiment_percentage: 100 | 27 experiment_percentage: 100 |
39 } | 28 } |
40 } | 29 } |
41 } | 30 } |
42 } | 31 } |
OLD | NEW |