OLD | NEW |
1 Commit Queue Keywords | 1 Commit Queue Keywords |
2 ===================== | 2 ===================== |
3 | 3 |
4 COMMIT | 4 COMMIT |
5 ------ | 5 ------ |
6 | 6 |
7 If you want to test your CL through the commit queue but are not ready to commit
| 7 If you want to test your CL through the commit queue but are not ready to commit
|
8 the changes yet, you can add the following line to the CL description: | 8 the changes yet, you can add the following line to the CL description: |
9 | 9 |
10 COMMIT=false | 10 COMMIT=false |
11 | 11 |
12 The CQ will run through its list of verifiers (reviewer check, trybots, tree che
ck, | 12 The CQ will run through its list of verifiers (reviewer check, trybots, tree che
ck, |
13 presubmit check), and will close the issue instead of committing it. | 13 presubmit check), and will close the issue instead of committing it. |
14 | 14 |
15 CQ_INCLUDE_TRYBOTS | 15 CQ_INCLUDE_TRYBOTS |
16 | 16 |
17 Allows you to add arbitrary trybots to the CQ's list of default trybots. | 17 Allows you to add arbitrary trybots to the CQ's list of default trybots. |
18 The CQ will block till these tryjobs pass just like the default list of tryjobs. | 18 The CQ will block till these tryjobs pass just like the default list of tryjobs. |
19 | 19 |
20 This is the format of the values of this keyword: | 20 This is the format of the values of this keyword: |
21 | 21 |
22 CQ_INCLUDE_TRYBOTS=master1:bot1,bot2;master2:bot3,bot4 | 22 CQ_INCLUDE_TRYBOTS=master1:bot1,bot2;master2:bot3,bot4 |
23 | 23 |
24 Here are some real world examples: | 24 Here are some real world examples: |
25 | 25 |
26 CQ_INCLUDE_TRYBOTS=tryserver.chromium:linux_layout_rel | 26 CQ_INCLUDE_TRYBOTS=tryserver.chromium:linux_layout_rel |
27 | 27 |
28 CQ_INCLUDE_TRYBOTS=tryserver.skia:Build-Ubuntu13.10-GCC4.8-NaCl-Release-Tryb
ot | 28 CQ_INCLUDE_TRYBOTS=tryserver.skia:Build-Mac10.9-Clang-x86_64-Debug |
29 | 29 |
30 CQ_EXCLUDE_TRYBOTS | 30 CQ_EXCLUDE_TRYBOTS |
31 | 31 |
32 Allows you to remove trybots from the CQ's list of default trybots. Should only
be | 32 Allows you to remove trybots from the CQ's list of default trybots. Should only
be |
33 used when particular builders are failing for reasons unrelated to your code cha
nges. | 33 used when particular builders are failing for reasons unrelated to your code cha
nges. |
34 | 34 |
35 This is the format of the values of this keyword: | 35 This is the format of the values of this keyword: |
36 | 36 |
37 CQ_EXCLUDE_TRYBOTS=master1:bot1,bot2;master2:bot3,bot4 | 37 CQ_EXCLUDE_TRYBOTS=master1:bot1,bot2;master2:bot3,bot4 |
38 | 38 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 NOPRESUBMIT=true | 87 NOPRESUBMIT=true |
88 | 88 |
89 NOTRY | 89 NOTRY |
90 ----- | 90 ----- |
91 | 91 |
92 If you cannot wait for the try job results, you can add the following line to th
e CL description: | 92 If you cannot wait for the try job results, you can add the following line to th
e CL description: |
93 | 93 |
94 NOTRY=true | 94 NOTRY=true |
95 | 95 |
96 The CQ will then not run any try jobs for your change and will commit the CL as
soon as the tree is open, assuming the presubmit check passes. | 96 The CQ will then not run any try jobs for your change and will commit the CL as
soon as the tree is open, assuming the presubmit check passes. |
OLD | NEW |