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 are working on experimental code and do not want to risk accidentally |
8 the changes yet, you can add the following line to the CL description: | 8 submitting the change via the CQ, then you can mark it with "COMMIT=false". |
| 9 The CQ will immediately abandon the change if it contains this option. |
| 10 To do a dry run through the CQ please use Rietveld's [dry run](https://groups.go
ogle.com/a/chromium.org/forum/#!topic/chromium-dev/G5-X0_tfmok) feature. |
9 | 11 |
10 COMMIT=false | 12 COMMIT=false |
11 | 13 |
12 The CQ will run through its list of verifiers (reviewer check, trybots, tree che
ck, | 14 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. | 15 presubmit check), and will close the issue instead of committing it. |
14 | 16 |
15 CQ_INCLUDE_TRYBOTS | 17 CQ_INCLUDE_TRYBOTS |
16 | 18 |
17 Allows you to add arbitrary trybots to the CQ's list of default trybots. | 19 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. | 20 The CQ will block till these tryjobs pass just like the default list of tryjobs. |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 NOPRESUBMIT=true | 89 NOPRESUBMIT=true |
88 | 90 |
89 NOTRY | 91 NOTRY |
90 ----- | 92 ----- |
91 | 93 |
92 If you cannot wait for the try job results, you can add the following line to th
e CL description: | 94 If you cannot wait for the try job results, you can add the following line to th
e CL description: |
93 | 95 |
94 NOTRY=true | 96 NOTRY=true |
95 | 97 |
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. | 98 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 |