James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 1 | :title: Project Gating |
| 2 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 3 | .. _project_gating: |
| 4 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 5 | Project Gating |
| 6 | ============== |
| 7 | |
| 8 | Traditionally, many software development projects merge changes from |
| 9 | developers into the repository, and then identify regressions |
| 10 | resulting from those changes (perhaps by running a test suite with a |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 11 | continuous integration system), followed by more patches to fix those |
| 12 | bugs. When the mainline of development is broken, it can be very |
| 13 | frustrating for developers and can cause lost productivity, |
| 14 | particularly so when the number of contributors or contributions is |
| 15 | large. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 16 | |
| 17 | The process of gating attempts to prevent changes that introduce |
| 18 | regressions from being merged. This keeps the mainline of development |
| 19 | open and working for all developers, and only when a change is |
| 20 | confirmed to work without disruption is it merged. |
| 21 | |
| 22 | Many projects practice an informal method of gating where developers |
| 23 | with mainline commit access ensure that a test suite runs before |
| 24 | merging a change. With more developers, more changes, and more |
| 25 | comprehensive test suites, that process does not scale very well, and |
| 26 | is not the best use of a developer's time. Zuul can help automate |
| 27 | this process, with a particular emphasis on ensuring large numbers of |
| 28 | changes are tested correctly. |
| 29 | |
Antoine Musso | 5586753 | 2014-01-10 18:24:35 +0100 | [diff] [blame] | 30 | Testing in parallel |
| 31 | ------------------- |
| 32 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 33 | A particular focus of Zuul is ensuring correctly ordered testing of |
| 34 | changes in parallel. A gating system should always test each change |
| 35 | applied to the tip of the branch exactly as it is going to be merged. |
| 36 | A simple way to do that would be to test one change at a time, and |
| 37 | merge it only if it passes tests. That works very well, but if |
| 38 | changes take a long time to test, developers may have to wait a long |
| 39 | time for their changes to make it into the repository. With some |
| 40 | projects, it may take hours to test changes, and it is easy for |
| 41 | developers to create changes at a rate faster than they can be tested |
| 42 | and merged. |
| 43 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 44 | Zuul's :ref:`dependent pipeline manager<dependent_pipeline_manager>` |
| 45 | allows for parallel execution of test jobs for gating while ensuring |
| 46 | changes are tested correctly, exactly as if they had been tested one |
| 47 | at a time. It does this by performing speculative execution of test |
| 48 | jobs; it assumes that all jobs will succeed and tests them in parallel |
| 49 | accordingly. If they do succeed, they can all be merged. However, if |
| 50 | one fails, then changes that were expecting it to succeed are |
| 51 | re-tested without the failed change. In the best case, as many |
| 52 | changes as execution contexts are available may be tested in parallel |
| 53 | and merged at once. In the worst case, changes are tested one at a |
| 54 | time (as each subsequent change fails, changes behind it start again). |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 55 | |
| 56 | For example, if a core developer approves five changes in rapid |
| 57 | succession:: |
| 58 | |
| 59 | A, B, C, D, E |
| 60 | |
| 61 | Zuul queues those changes in the order they were approved, and notes |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 62 | that each subsequent change depends on the one ahead of it merging: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 63 | |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 64 | .. blockdiag:: |
| 65 | |
| 66 | blockdiag foo { |
| 67 | node_width = 40; |
| 68 | span_width = 40; |
| 69 | A <- B <- C <- D <- E; |
| 70 | } |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 71 | |
| 72 | Zuul then starts immediately testing all of the changes in parallel. |
| 73 | But in the case of changes that depend on others, it instructs the |
| 74 | test system to include the changes ahead of it, with the assumption |
| 75 | they pass. That means jobs testing change *B* include change *A* as |
| 76 | well:: |
| 77 | |
| 78 | Jobs for A: merge change A, then test |
| 79 | Jobs for B: merge changes A and B, then test |
| 80 | Jobs for C: merge changes A, B and C, then test |
| 81 | Jobs for D: merge changes A, B, C and D, then test |
| 82 | Jobs for E: merge changes A, B, C, D and E, then test |
| 83 | |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 84 | Hence jobs triggered to tests A will only test A and ignore B, C, D: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 85 | |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 86 | .. blockdiag:: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 87 | |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 88 | blockdiag foo { |
| 89 | node_width = 40; |
| 90 | span_width = 40; |
| 91 | master -> A -> B -> C -> D -> E; |
| 92 | group jobs_for_A { |
| 93 | label = "Merged changes for A"; |
| 94 | master -> A; |
| 95 | } |
| 96 | group ignored_to_test_A { |
| 97 | label = "Ignored changes"; |
| 98 | color = "lightgray"; |
| 99 | B -> C -> D -> E; |
| 100 | } |
| 101 | } |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 102 | |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 103 | The jobs for E would include the whole dependency chain: A, B, C, D, and E. |
| 104 | E will be tested assuming A, B, C, and D passed: |
| 105 | |
| 106 | .. blockdiag:: |
| 107 | |
| 108 | blockdiag foo { |
| 109 | node_width = 40; |
| 110 | span_width = 40; |
| 111 | group jobs_for_E { |
| 112 | label = "Merged changes for E"; |
| 113 | master -> A -> B -> C -> D -> E; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | If changes *A* and *B* pass tests (green), and *C*, *D*, and *E* fail (red): |
| 118 | |
| 119 | .. blockdiag:: |
| 120 | |
| 121 | blockdiag foo { |
| 122 | node_width = 40; |
| 123 | span_width = 40; |
| 124 | |
| 125 | A [color = lightgreen]; |
| 126 | B [color = lightgreen]; |
| 127 | C [color = pink]; |
| 128 | D [color = pink]; |
| 129 | E [color = pink]; |
| 130 | |
| 131 | master <- A <- B <- C <- D <- E; |
| 132 | } |
| 133 | |
| 134 | Zuul will merge change *A* followed by change *B*, leaving this queue: |
| 135 | |
| 136 | .. blockdiag:: |
| 137 | |
| 138 | blockdiag foo { |
| 139 | node_width = 40; |
| 140 | span_width = 40; |
| 141 | |
| 142 | C [color = pink]; |
| 143 | D [color = pink]; |
| 144 | E [color = pink]; |
| 145 | |
| 146 | C <- D <- E; |
| 147 | } |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 148 | |
| 149 | Since *D* was dependent on *C*, it is not clear whether *D*'s failure is the |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 150 | result of a defect in *D* or *C*: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 151 | |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 152 | .. blockdiag:: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 153 | |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 154 | blockdiag foo { |
| 155 | node_width = 40; |
| 156 | span_width = 40; |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 157 | |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 158 | C [color = pink]; |
| 159 | D [label = "D\n?"]; |
| 160 | E [label = "E\n?"]; |
| 161 | |
| 162 | C <- D <- E; |
| 163 | } |
| 164 | |
| 165 | Since *C* failed, Zuul will report its failure and drop *C* from the queue, |
| 166 | keeping D and E: |
| 167 | |
| 168 | .. blockdiag:: |
| 169 | |
| 170 | blockdiag foo { |
| 171 | node_width = 40; |
| 172 | span_width = 40; |
| 173 | |
| 174 | D [label = "D\n?"]; |
| 175 | E [label = "E\n?"]; |
| 176 | |
| 177 | D <- E; |
| 178 | } |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 179 | |
| 180 | This queue is the same as if two new changes had just arrived, so Zuul |
| 181 | starts the process again testing *D* against the tip of the branch, and |
Antoine Musso | 3a43e14 | 2013-10-30 23:51:58 +0100 | [diff] [blame] | 182 | *E* against *D*: |
| 183 | |
| 184 | .. blockdiag:: |
| 185 | |
| 186 | blockdiag foo { |
| 187 | node_width = 40; |
| 188 | span_width = 40; |
| 189 | master -> D -> E; |
| 190 | group jobs_for_D { |
| 191 | label = "Merged changes for D"; |
| 192 | master -> D; |
| 193 | } |
| 194 | group ignored_to_test_D { |
| 195 | label = "Skip"; |
| 196 | color = "lightgray"; |
| 197 | E; |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | .. blockdiag:: |
| 202 | |
| 203 | blockdiag foo { |
| 204 | node_width = 40; |
| 205 | span_width = 40; |
| 206 | group jobs_for_E { |
| 207 | label = "Merged changes for E"; |
| 208 | master -> D -> E; |
| 209 | } |
| 210 | } |
| 211 | |
Antoine Musso | 5586753 | 2014-01-10 18:24:35 +0100 | [diff] [blame] | 212 | |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 213 | Cross Project Testing |
| 214 | --------------------- |
Antoine Musso | 5586753 | 2014-01-10 18:24:35 +0100 | [diff] [blame] | 215 | |
| 216 | When your projects are closely coupled together, you want to make sure |
| 217 | changes entering the gate are going to be tested with the version of |
| 218 | other projects currently enqueued in the gate (since they will |
| 219 | eventually be merged and might introduce breaking features). |
| 220 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 221 | Such relationships can be defined in Zuul configuration by placing |
| 222 | projects in a shared queue within a dependent pipeline. Whenever |
| 223 | changes for any project enter a pipeline with such a shared queue, |
| 224 | they are tested together, such that the commits for the changes ahead |
| 225 | in the queue are automatically present in the jobs for the changes |
| 226 | behind them. See :ref:`project` for more details. |
Antoine Musso | 5586753 | 2014-01-10 18:24:35 +0100 | [diff] [blame] | 227 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 228 | A given dependent pipeline may have as many shared change queues as |
| 229 | necessary, so groups of related projects may share a change queue |
| 230 | without interfering with unrelated projects. Independent pipelines do |
| 231 | not use shared change queues, however, they may still be used to test |
| 232 | changes across projects using cross-project dependencies. |
Antoine Musso | 5586753 | 2014-01-10 18:24:35 +0100 | [diff] [blame] | 233 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 234 | .. _dependencies: |
Antoine Musso | 5586753 | 2014-01-10 18:24:35 +0100 | [diff] [blame] | 235 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 236 | Cross-Project Dependencies |
| 237 | -------------------------- |
Antoine Musso | 5586753 | 2014-01-10 18:24:35 +0100 | [diff] [blame] | 238 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 239 | Zuul permits users to specify dependencies across projects. Using a |
| 240 | special footer in Git commit messages, users may specify that a change |
| 241 | depends on another change in any repository known to Zuul. |
Antoine Musso | 5586753 | 2014-01-10 18:24:35 +0100 | [diff] [blame] | 242 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 243 | Zuul's cross-project dependencies behave like a directed acyclic graph |
| 244 | (DAG), like git itself, to indicate a one-way dependency relationship |
| 245 | between changes in different git repositories. Change A may depend on |
| 246 | B, but B may not depend on A. |
Antoine Musso | 5586753 | 2014-01-10 18:24:35 +0100 | [diff] [blame] | 247 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 248 | .. TODO: update for v3 crd syntax |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 249 | |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 250 | To use them, include ``Depends-On: <gerrit-change-id>`` in the footer of |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 251 | a commit message. Use the full Change-ID ('I' + 40 characters). |
| 252 | |
| 253 | |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 254 | Dependent Pipeline |
| 255 | ~~~~~~~~~~~~~~~~~~ |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 256 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 257 | When Zuul sees changes with cross-project dependencies, it serializes |
| 258 | them in the usual manner when enqueuing them into a pipeline. This |
| 259 | means that if change A depends on B, then when they are added to a |
| 260 | dependent pipeline, B will appear first and A will follow: |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 261 | |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 262 | .. blockdiag:: |
| 263 | :align: center |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 264 | |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 265 | blockdiag crd { |
| 266 | orientation = portrait |
| 267 | span_width = 30 |
| 268 | class greendot [ |
| 269 | label = "", |
| 270 | shape = circle, |
| 271 | color = green, |
| 272 | width = 20, height = 20 |
| 273 | ] |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 274 | |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 275 | A_status [ class = greendot ] |
| 276 | B_status [ class = greendot ] |
| 277 | B_status -- A_status |
| 278 | |
| 279 | 'Change B\nChange-Id: Iabc' <- 'Change A\nDepends-On: Iabc' |
| 280 | } |
| 281 | |
| 282 | If tests for B fail, both B and A will be removed from the pipeline, and |
| 283 | it will not be possible for A to merge until B does. |
| 284 | |
| 285 | |
| 286 | .. note:: |
| 287 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 288 | If changes with cross-project dependencies do not share a change |
| 289 | queue then Zuul is unable to enqueue them together, and the first |
| 290 | will be required to merge before the second is enqueued. |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 291 | |
| 292 | Independent Pipeline |
| 293 | ~~~~~~~~~~~~~~~~~~~~ |
| 294 | |
| 295 | When changes are enqueued into an independent pipeline, all of the |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 296 | related dependencies (both normal git-dependencies that come from |
| 297 | parent commits as well as cross-project dependencies) appear in a |
| 298 | dependency graph, as in a dependent pipeline. This means that even in |
| 299 | an independent pipeline, your change will be tested with its |
| 300 | dependencies. Changes that were previously unable to be fully tested |
| 301 | until a related change landed in a different repository may now be |
| 302 | tested together from the start. |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 303 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 304 | All of the changes are still independent (you will note that the whole |
| 305 | pipeline does not share a graph as in a dependent pipeline), but for |
| 306 | each change tested, all of its dependencies are visually connected to |
| 307 | it, and they are used to construct the git repositories that Zuul uses |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 308 | when testing. |
| 309 | |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 310 | When looking at this graph on the status page, you will note that the |
| 311 | dependencies show up as grey dots, while the actual change tested shows |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 312 | up as red or green (depending on the jobs results): |
| 313 | |
| 314 | .. blockdiag:: |
| 315 | :align: center |
| 316 | |
| 317 | blockdiag crdgrey { |
| 318 | orientation = portrait |
| 319 | span_width = 30 |
| 320 | class dot [ |
| 321 | label = "", |
| 322 | shape = circle, |
| 323 | width = 20, height = 20 |
| 324 | ] |
| 325 | |
| 326 | A_status [class = "dot", color = green] |
| 327 | B_status [class = "dot", color = grey] |
| 328 | B_status -- A_status |
| 329 | |
| 330 | "Change B" <- "Change A\nDepends-On: B" |
| 331 | } |
| 332 | |
| 333 | This is to indicate that the grey changes are only there to establish |
| 334 | dependencies. Even if one of the dependencies is also being tested, it |
| 335 | will show up as a grey dot when used as a dependency, but separately and |
| 336 | additionally will appear as its own red or green dot for its test. |
| 337 | |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 338 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 339 | .. TODO: relevant for v3? |
| 340 | |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 341 | Multiple Changes |
| 342 | ~~~~~~~~~~~~~~~~ |
| 343 | |
| 344 | A Gerrit change ID may refer to multiple changes (on multiple branches |
| 345 | of the same project, or even multiple projects). In these cases, Zuul |
| 346 | will treat all of the changes with that change ID as dependencies. So |
| 347 | if you say that change in project A Depends-On a change ID that has |
| 348 | changes in two branches of project B, then when testing the change to |
| 349 | project A, both project B changes will be applied, and when deciding |
| 350 | whether the project A change can merge, both changes must merge ahead |
| 351 | of it. |
| 352 | |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 353 | .. blockdiag:: |
| 354 | :align: center |
| 355 | |
| 356 | blockdiag crdmultirepos { |
| 357 | orientation = portrait |
| 358 | span_width = 30 |
| 359 | class greendot [ |
| 360 | label = "", |
| 361 | shape = circle, |
| 362 | color = green, |
| 363 | width = 20, height = 20 |
| 364 | ] |
| 365 | |
| 366 | B_stable_status [ class = "greendot" ] |
| 367 | B_master_status [ class = "greendot" ] |
| 368 | A_status [ class = "greendot" ] |
| 369 | B_stable_status -- B_master_status -- A_status |
| 370 | |
| 371 | A [ label = "Repo A\nDepends-On: I123" ] |
| 372 | group { |
| 373 | orientation = portrait |
| 374 | label = "Dependencies" |
| 375 | color = "lightgray" |
| 376 | |
| 377 | B_stable [ label = "Repo B\nChange-Id: I123\nBranch: stable" ] |
| 378 | B_master [ label = "Repo B\nChange-Id: I123\nBranch: master" ] |
| 379 | } |
| 380 | B_master <- A |
| 381 | B_stable <- A |
| 382 | |
| 383 | } |
| 384 | |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 385 | A change may depend on more than one Gerrit change ID as well. So it |
| 386 | is possible for a change in project A to depend on a change in project |
Antoine Musso | 281a89e | 2015-09-30 15:05:49 +0200 | [diff] [blame] | 387 | B and a change in project C. Simply add more ``Depends-On:`` lines to |
| 388 | the commit message footer. |
| 389 | |
| 390 | .. blockdiag:: |
| 391 | :align: center |
| 392 | |
| 393 | blockdiag crdmultichanges { |
| 394 | orientation = portrait |
| 395 | span_width = 30 |
| 396 | class greendot [ |
| 397 | label = "", |
| 398 | shape = circle, |
| 399 | color = green, |
| 400 | width = 20, height = 20 |
| 401 | ] |
| 402 | |
| 403 | C_status [ class = "greendot" ] |
| 404 | B_status [ class = "greendot" ] |
| 405 | A_status [ class = "greendot" ] |
| 406 | C_status -- B_status -- A_status |
| 407 | |
| 408 | A [ label = "Repo A\nDepends-On: I123\nDepends-On: Iabc" ] |
| 409 | group { |
| 410 | orientation = portrait |
| 411 | label = "Dependencies" |
| 412 | color = "lightgray" |
| 413 | |
| 414 | B [ label = "Repo B\nChange-Id: I123" ] |
| 415 | C [ label = "Repo C\nChange-Id: Iabc" ] |
| 416 | } |
| 417 | B, C <- A |
| 418 | } |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 419 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 420 | .. TODO: update for v3 |
| 421 | |
James E. Blair | 096a80a | 2015-09-28 14:19:31 -0700 | [diff] [blame] | 422 | Cycles |
| 423 | ~~~~~~ |
| 424 | |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 425 | If a cycle is created by use of cross-project dependencies, Zuul will |
| 426 | abort its work very early. There will be no message in Gerrit and no |
| 427 | changes that are part of the cycle will be enqueued into any pipeline. |
| 428 | This is to protect Zuul from infinite loops. |