OLD | NEW |
---|---|
(Empty) | |
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. | |
3 | |
4 version: 1 | |
rmistry
2015/06/08 11:39:15
I am assuming the content here is identical to the
Sergiy Byelozyorov
2015/06/08 11:45:26
Yes, I've tried my best not to make any mistakes w
rmistry
2015/06/08 12:03:01
The only one I see missing is:
"commit_user": "com
| |
5 cq_name: "skia" | |
6 cq_status_url: "https://chromium-cq-status.appspot.com" | |
7 commit_burst_delay: 300 | |
8 max_commit_burst: 2 | |
9 | |
10 rietveld { | |
11 url: "https://codereview.chromium.org" | |
12 } | |
13 | |
14 verifiers { | |
15 reviewer_lgtm { | |
16 committer_list: "skia" | |
17 max_wait_secs: 21600 # 6 hours | |
18 no_lgtm_msg: "No LGTM from a valid reviewer yet. Please ask for an LGTM from a\nfull Skia committer from\nhttps://skia.googlesource.com/skia/+/master/CQ_COM MITTERS" | |
19 } | |
20 | |
21 tree_status { | |
22 tree_status_url: "https://skia-tree-status.appspot.com" | |
23 } | |
24 | |
25 try_job { | |
26 buckets { | |
27 name: "client.skia" | |
28 builders { name: "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot" } | |
29 builders { name: "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybo t" } | |
30 } | |
31 buckets { | |
32 name: "client.skia.compile" | |
33 builders { name: "Build-Mac10.8-Clang-x86_64-Release-Trybot" } | |
34 builders { name: "Build-Ubuntu-Clang-x86_64-Debug-Trybot" } | |
35 builders { name: "Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot" } | |
36 builders { name: "Build-Ubuntu-GCC-Mips-Debug-Android-Trybot" } | |
37 builders { name: "Build-Ubuntu-GCC-x86_64-Release-Trybot" } | |
38 builders { name: "Build-Win-MSVC-x86-Debug-Trybot" } | |
39 builders { name: "Build-Win-MSVC-x86_64-Debug-Trybot" } | |
40 } | |
41 buckets { | |
42 name: "client.skia.fyi" | |
43 builders { name: "skia_presubmit-Trybot" } | |
44 } | |
45 } | |
46 } | |
OLD | NEW |