James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 1 | :title: Zuul |
| 2 | |
| 3 | Zuul |
| 4 | ==== |
| 5 | |
| 6 | Configuration |
| 7 | ------------- |
| 8 | |
| 9 | Zuul has three configuration files: |
| 10 | |
| 11 | **zuul.conf** |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 12 | Connection information for Gerrit and Gearman, locations of the |
Łukasz Jernaś | 048acb4 | 2014-03-02 18:49:41 +0100 | [diff] [blame] | 13 | other config files. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 14 | **layout.yaml** |
Łukasz Jernaś | 048acb4 | 2014-03-02 18:49:41 +0100 | [diff] [blame] | 15 | Project and pipeline configuration -- what Zuul does. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 16 | **logging.conf** |
Łukasz Jernaś | 048acb4 | 2014-03-02 18:49:41 +0100 | [diff] [blame] | 17 | Python logging config. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 18 | |
| 19 | Examples of each of the three files can be found in the etc/ directory |
| 20 | of the source distribution. |
| 21 | |
James E. Blair | 6aea36d | 2012-12-17 13:03:24 -0800 | [diff] [blame] | 22 | .. _zuulconf: |
| 23 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 24 | zuul.conf |
| 25 | ~~~~~~~~~ |
| 26 | |
| 27 | Zuul will look for ``/etc/zuul/zuul.conf`` or ``~/zuul.conf`` to |
| 28 | bootstrap its configuration. Alternately, you may specify ``-c |
| 29 | /path/to/zuul.conf`` on the command line. |
| 30 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 31 | Gerrit and Gearman connection information are each described in a |
| 32 | section of zuul.conf. The location of the other two configuration |
| 33 | files (as well as the location of the PID file when running Zuul as a |
| 34 | server) are specified in a third section. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 35 | |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 36 | The three sections of this config and their options are documented below. |
| 37 | You can also find an example zuul.conf file in the git |
| 38 | `repository |
K Jonathan Harker | 97e457e | 2013-02-26 13:29:38 -0800 | [diff] [blame] | 39 | <https://github.com/openstack-infra/zuul/blob/master/etc/zuul.conf-sample>`_ |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 40 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 41 | gearman |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 42 | """"""" |
| 43 | |
| 44 | **server** |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 45 | Hostname or IP address of the Gearman server. |
| 46 | ``server=gearman.example.com`` |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 47 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 48 | **port** |
Łukasz Jernaś | 048acb4 | 2014-03-02 18:49:41 +0100 | [diff] [blame] | 49 | Port on which the Gearman server is listening. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 50 | ``port=4730`` |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 51 | |
James E. Blair | 77cc7b8 | 2013-07-15 13:22:37 -0700 | [diff] [blame] | 52 | gearman_server |
| 53 | """""""""""""" |
| 54 | |
| 55 | **start** |
| 56 | Whether to start the internal Gearman server (default: False). |
| 57 | ``start=true`` |
| 58 | |
| 59 | **log_config** |
| 60 | Path to log config file for internal Gearman server. |
| 61 | ``log_config=/etc/zuul/gearman-logging.yaml`` |
| 62 | |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 63 | gerrit |
| 64 | """""" |
| 65 | |
| 66 | **server** |
| 67 | FQDN of Gerrit server. |
| 68 | ``server=review.example.com`` |
| 69 | |
Akihiro Motoki | c7d28a7 | 2014-03-22 09:21:38 +0900 | [diff] [blame] | 70 | **port** |
| 71 | Optional: Gerrit server port. |
| 72 | ``port=29418`` |
| 73 | |
Antoine Musso | 2747501 | 2012-11-26 09:53:01 +0100 | [diff] [blame] | 74 | **baseurl** |
| 75 | Optional: path to Gerrit web interface. Defaults to ``https://<value |
| 76 | of server>/``. ``baseurl=https://review.example.com/review_site/`` |
| 77 | |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 78 | **user** |
| 79 | User name to use when logging into above server via ssh. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 80 | ``user=zuul`` |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 81 | |
| 82 | **sshkey** |
| 83 | Path to SSH key to use when logging into above server. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 84 | ``sshkey=/home/zuul/.ssh/id_rsa`` |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 85 | |
| 86 | zuul |
| 87 | """" |
| 88 | |
| 89 | **layout_config** |
James E. Blair | 4076e2b | 2014-01-28 12:42:20 -0800 | [diff] [blame] | 90 | Path to layout config file. Used by zuul-server only. |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 91 | ``layout_config=/etc/zuul/layout.yaml`` |
| 92 | |
| 93 | **log_config** |
James E. Blair | a443013 | 2014-02-17 08:32:07 -0800 | [diff] [blame] | 94 | Path to log config file. Used by zuul-server only. |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 95 | ``log_config=/etc/zuul/logging.yaml`` |
| 96 | |
| 97 | **pidfile** |
James E. Blair | a443013 | 2014-02-17 08:32:07 -0800 | [diff] [blame] | 98 | Path to PID lock file. Used by zuul-server only. |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 99 | ``pidfile=/var/run/zuul/zuul.pid`` |
| 100 | |
| 101 | **state_dir** |
James E. Blair | 4076e2b | 2014-01-28 12:42:20 -0800 | [diff] [blame] | 102 | Path to directory that Zuul should save state to. Used by all Zuul |
| 103 | commands. |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 104 | ``state_dir=/var/lib/zuul`` |
| 105 | |
James E. Blair | 4076e2b | 2014-01-28 12:42:20 -0800 | [diff] [blame] | 106 | **report_times** |
| 107 | Boolean value (``true`` or ``false``) that determines if Zuul should |
| 108 | include elapsed times for each job in the textual report. Used by |
| 109 | zuul-server only. |
| 110 | ``report_times=true`` |
| 111 | |
| 112 | **status_url** |
| 113 | URL that will be posted in Zuul comments made to Gerrit changes when |
| 114 | starting jobs for a change. Used by zuul-server only. |
| 115 | ``status_url=https://zuul.example.com/status`` |
| 116 | |
| 117 | **url_pattern** |
| 118 | If you are storing build logs external to the system that originally |
| 119 | ran jobs and wish to link to those logs when Zuul makes comments on |
| 120 | Gerrit changes for completed jobs this setting configures what the |
| 121 | URLs for those links should be. Used by zuul-server only. |
| 122 | ``http://logs.example.com/{change.number}/{change.patchset}/{pipeline.name}/{job.name}/{build.number}`` |
| 123 | |
| 124 | **job_name_in_report** |
| 125 | Boolean value (``true`` or ``false``) that indicates whether the |
| 126 | job name should be included in the report (normally only the URL |
| 127 | is included). Defaults to ``false``. Used by zuul-server only. |
| 128 | ``job_name_in_report=true`` |
| 129 | |
| 130 | merger |
| 131 | """""" |
| 132 | |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 133 | **git_dir** |
| 134 | Directory that Zuul should clone local git repositories to. |
| 135 | ``git_dir=/var/lib/zuul/git`` |
| 136 | |
Paul Belanger | b67aba1 | 2013-05-13 19:22:14 -0400 | [diff] [blame] | 137 | **git_user_email** |
| 138 | Optional: Value to pass to `git config user.email`. |
| 139 | ``git_user_email=zuul@example.com`` |
| 140 | |
| 141 | **git_user_name** |
| 142 | Optional: Value to pass to `git config user.name`. |
| 143 | ``git_user_name=zuul`` |
| 144 | |
Arx Cruz | b1b010d | 2013-10-28 19:49:59 -0200 | [diff] [blame] | 145 | **zuul_url** |
James E. Blair | 4076e2b | 2014-01-28 12:42:20 -0800 | [diff] [blame] | 146 | URL of this merger's git repos, accessible to test workers. Usually |
| 147 | "http://zuul.example.com/p" or "http://zuul-merger01.example.com/p" |
| 148 | depending on whether the merger is co-located with the Zuul server. |
Arx Cruz | b1b010d | 2013-10-28 19:49:59 -0200 | [diff] [blame] | 149 | |
James E. Blair | a443013 | 2014-02-17 08:32:07 -0800 | [diff] [blame] | 150 | **log_config** |
| 151 | Path to log config file for the merger process. |
| 152 | ``log_config=/etc/zuul/logging.yaml`` |
| 153 | |
| 154 | **pidfile** |
| 155 | Path to PID lock file for the merger process. |
| 156 | ``pidfile=/var/run/zuul-merger/merger.pid`` |
| 157 | |
Joshua Hesketh | 5fea867 | 2013-08-19 17:32:01 +1000 | [diff] [blame] | 158 | smtp |
| 159 | """" |
| 160 | |
| 161 | **server** |
| 162 | SMTP server hostname or address to use. |
| 163 | ``server=localhost`` |
| 164 | |
Akihiro Motoki | c7d28a7 | 2014-03-22 09:21:38 +0900 | [diff] [blame] | 165 | **port** |
| 166 | Optional: SMTP server port. |
| 167 | ``port=25`` |
| 168 | |
Joshua Hesketh | 5fea867 | 2013-08-19 17:32:01 +1000 | [diff] [blame] | 169 | **default_from** |
| 170 | Who the email should appear to be sent from when emailing the report. |
| 171 | This can be overridden by individual pipelines. |
| 172 | ``default_from=zuul@example.com`` |
| 173 | |
| 174 | **default_to** |
| 175 | Who the report should be emailed to by default. |
| 176 | This can be overridden by individual pipelines. |
| 177 | ``default_to=you@example.com`` |
| 178 | |
Joshua Hesketh | 36c3fa5 | 2014-01-22 11:40:52 +1100 | [diff] [blame] | 179 | .. _swift: |
| 180 | |
| 181 | swift |
| 182 | """"" |
| 183 | |
| 184 | To send (optional) swift upload instructions this section must be |
| 185 | present. Multiple destinations can be defined in the :ref:`jobs` |
| 186 | section of the layout. |
| 187 | |
Joshua Hesketh | c496750 | 2014-05-15 06:39:14 -0700 | [diff] [blame^] | 188 | **X-Account-Meta-Temp-Url-Key** (optional) |
| 189 | This is the key used to sign the HMAC message. If you do not set a |
| 190 | key Zuul will generate one automatically. |
| 191 | |
| 192 | **Send-Temp-Url-Key** (optional) |
| 193 | Zuul can send the X-Account-Meta-Temp-Url-Key to swift for you if |
| 194 | you have set up the appropriate credentials in ``authurl`` below. |
| 195 | This isn't necessary if you know and have set your |
| 196 | X-Account-Meta-Temp-Url-Key. |
| 197 | ``default: true`` |
| 198 | |
| 199 | **X-Storage-Url** (optional) |
| 200 | The storage URL is the destination to upload files into. If you do |
| 201 | not set this the ``authurl`` credentials are used to fetch the url |
| 202 | from swift. |
| 203 | |
| 204 | **authurl** (optional) |
| 205 | The (keystone) Auth URL for swift. |
Joshua Hesketh | 36c3fa5 | 2014-01-22 11:40:52 +1100 | [diff] [blame] | 206 | ``For example, https://identity.api.rackspacecloud.com/v2.0/`` |
Joshua Hesketh | c496750 | 2014-05-15 06:39:14 -0700 | [diff] [blame^] | 207 | This is required if you have Send-Temp-Url-Key set to ``True`` or |
| 208 | if you have not supplied the X-Storage-Url. |
Joshua Hesketh | 36c3fa5 | 2014-01-22 11:40:52 +1100 | [diff] [blame] | 209 | |
| 210 | Any of the `swiftclient connection parameters`_ can also be defined |
| 211 | here by the same name. Including the os_options by their key name ( |
| 212 | ``for example tenant_id``) |
| 213 | |
| 214 | .. _swiftclient connection parameters: http://docs.openstack.org/developer/python-swiftclient/swiftclient.html#module-swiftclient.client |
| 215 | |
Joshua Hesketh | 36c3fa5 | 2014-01-22 11:40:52 +1100 | [diff] [blame] | 216 | **region_name** (optional) |
| 217 | The region name holding the swift container |
| 218 | ``For example, SYD`` |
| 219 | |
| 220 | Each destination defined by the :ref:`jobs` will have the following |
| 221 | default values that it may overwrite. |
| 222 | |
| 223 | **default_container** (optional) |
| 224 | Container name to place the log into |
| 225 | ``For example, logs`` |
| 226 | |
| 227 | **default_expiry** (optional) |
| 228 | How long the signed destination should be available for |
| 229 | ``default: 7200 (2hrs)`` |
| 230 | |
| 231 | **default_max_file_size** (optional) |
| 232 | The maximum size of an individual file |
| 233 | ``default: 104857600 (100MB)`` |
| 234 | |
| 235 | **default_max_file_count** (optional) |
| 236 | The maximum number of separate files to allow |
| 237 | ``default: 10`` |
| 238 | |
| 239 | **default_logserver_prefix** |
| 240 | Provide a URL to the CDN or logserver app so that a worker knows |
| 241 | what URL to return. The worker should return the logserver_prefix |
| 242 | url and the object path. |
| 243 | ``For example: http://logs.example.org/server.app?obj=`` |
| 244 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 245 | layout.yaml |
| 246 | ~~~~~~~~~~~ |
| 247 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 248 | This is the main configuration file for Zuul, where all of the pipelines |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 249 | and projects are defined, what tests should be run, and what actions |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 250 | Zuul should perform. There are three sections: pipelines, jobs, and |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 251 | projects. |
| 252 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 253 | .. _includes: |
| 254 | |
| 255 | Includes |
| 256 | """""""" |
| 257 | |
| 258 | Custom functions to be used in Zuul's configuration may be provided |
| 259 | using the ``includes`` directive. It accepts a list of files to |
| 260 | include, and currently supports one type of inclusion, a python file:: |
| 261 | |
| 262 | includes: |
| 263 | - python-file: local_functions.py |
| 264 | |
| 265 | **python-file** |
| 266 | The path to a python file. The file will be loaded and objects that |
| 267 | it defines will be placed in a special environment which can be |
| 268 | referenced in the Zuul configuration. Currently only the |
| 269 | parameter-function attribute of a Job uses this feature. |
| 270 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 271 | Pipelines |
| 272 | """"""""" |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 273 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 274 | Zuul can have any number of independent pipelines. Whenever a matching |
| 275 | Gerrit event is found for a pipeline, that event is added to the |
| 276 | pipeline, and the jobs specified for that pipeline are run. When all |
| 277 | jobs specified for the pipeline that were triggered by an event are |
| 278 | completed, Zuul reports back to Gerrit the results. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 279 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 280 | There are no pre-defined pipelines in Zuul, rather you can define |
| 281 | whatever pipelines you need in the layout file. This is a very flexible |
| 282 | system that can accommodate many kinds of workflows. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 283 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 284 | Here is a quick example of a pipeline definition followed by an |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 285 | explanation of each of the parameters:: |
| 286 | |
| 287 | - name: check |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 288 | manager: IndependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 289 | trigger: |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 290 | gerrit: |
| 291 | - event: patchset-created |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 292 | success: |
| 293 | verified: 1 |
| 294 | failure: |
| 295 | verified: -1 |
| 296 | |
| 297 | **name** |
| 298 | This is used later in the project definition to indicate what jobs |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 299 | should be run for events in the pipeline. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 300 | |
James E. Blair | 8dbd56a | 2012-12-22 10:55:10 -0800 | [diff] [blame] | 301 | **description** |
| 302 | This is an optional field that may be used to provide a textual |
| 303 | description of the pipeline. |
| 304 | |
James E. Blair | 5637019 | 2013-01-14 15:47:28 -0800 | [diff] [blame] | 305 | **success-message** |
| 306 | An optional field that supplies the introductory text in message |
| 307 | reported back to Gerrit when all the voting builds are successful. |
| 308 | Defaults to "Build successful." |
| 309 | |
| 310 | **failure-message** |
| 311 | An optional field that supplies the introductory text in message |
| 312 | reported back to Gerrit when at least one voting build fails. |
| 313 | Defaults to "Build failed." |
| 314 | |
Joshua Hesketh | b717977 | 2014-01-30 23:30:46 +1100 | [diff] [blame] | 315 | **merge-failure-message** |
| 316 | An optional field that supplies the introductory text in message |
| 317 | reported back to Gerrit when a change fails to merge with the |
| 318 | current state of the repository. |
| 319 | Defaults to "Merge failed." |
| 320 | |
Joshua Hesketh | 3979e3e | 2014-03-04 11:21:10 +1100 | [diff] [blame] | 321 | **footer-message** |
| 322 | An optional field to supply additional information after test results. |
| 323 | Useful for adding information about the CI system such as debugging |
| 324 | and contact details. |
| 325 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 326 | **manager** |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 327 | There are currently two schemes for managing pipelines: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 328 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 329 | *IndependentPipelineManager* |
| 330 | Every event in this pipeline should be treated as independent of |
| 331 | other events in the pipeline. This is appropriate when the order of |
| 332 | events in the pipeline doesn't matter because the results of the |
| 333 | actions this pipeline performs can not affect other events in the |
| 334 | pipeline. For example, when a change is first uploaded for review, |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 335 | you may want to run tests on that change to provide early feedback |
| 336 | to reviewers. At the end of the tests, the change is not going to |
| 337 | be merged, so it is safe to run these tests in parallel without |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 338 | regard to any other changes in the pipeline. They are independent. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 339 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 340 | Another type of pipeline that is independent is a post-merge |
| 341 | pipeline. In that case, the changes have already merged, so the |
| 342 | results can not affect any other events in the pipeline. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 343 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 344 | *DependentPipelineManager* |
| 345 | The dependent pipeline manager is designed for gating. It ensures |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 346 | that every change is tested exactly as it is going to be merged |
| 347 | into the repository. An ideal gating system would test one change |
| 348 | at a time, applied to the tip of the repository, and only if that |
| 349 | change passed tests would it be merged. Then the next change in |
| 350 | line would be tested the same way. In order to achieve parallel |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 351 | testing of changes, the dependent pipeline manager performs |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 352 | speculative execution on changes. It orders changes based on |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 353 | their entry into the pipeline. It begins testing all changes in |
| 354 | parallel, assuming that each change ahead in the pipeline will pass |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 355 | its tests. If they all succeed, all the changes can be tested and |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 356 | merged in parallel. If a change near the front of the pipeline |
| 357 | fails its tests, each change behind it ignores whatever tests have |
| 358 | been completed and are tested again without the change in front. |
| 359 | This way gate tests may run in parallel but still be tested |
| 360 | correctly, exactly as they will appear in the repository when |
| 361 | merged. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 362 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 363 | One important characteristic of the DependentPipelineManager is that |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 364 | it analyzes the jobs that are triggered by different projects, and |
| 365 | if those projects have jobs in common, it treats those projects as |
| 366 | related, and they share a single virtual queue of changes. Thus, |
| 367 | if there is a job that performs integration testing on two |
| 368 | projects, those two projects will automatically share a virtual |
| 369 | change queue. If a third project does not invoke that job, it |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 370 | will be part of a separate virtual change queue, and changes to |
| 371 | it will not depend on changes to the first two jobs. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 372 | |
| 373 | For more detail on the theory and operation of Zuul's |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 374 | DependentPipelineManager, see: :doc:`gating`. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 375 | |
| 376 | **trigger** |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 377 | Exactly one trigger source must be supplied for each pipeline. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 378 | Triggers are not exclusive -- matching events may be placed in |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 379 | multiple pipelines, and they will behave independently in each of |
| 380 | the pipelines they match. You may select from the following: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 381 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 382 | **gerrit** |
| 383 | This describes what Gerrit events should be placed in the |
| 384 | pipeline. Multiple gerrit triggers may be listed. Further |
| 385 | parameters describe the kind of events that match: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 386 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 387 | *event* |
| 388 | The event name from gerrit. Examples: ``patchset-created``, |
| 389 | ``comment-added``, ``ref-updated``. This field is treated as a |
| 390 | regular expression. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 391 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 392 | *branch* |
| 393 | The branch associated with the event. Example: ``master``. This |
| 394 | field is treated as a regular expression, and multiple branches may |
| 395 | be listed. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 396 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 397 | *ref* |
| 398 | On ref-updated events, the branch parameter is not used, instead the |
| 399 | ref is provided. Currently Gerrit has the somewhat idiosyncratic |
| 400 | behavior of specifying bare refs for branch names (e.g., ``master``), |
| 401 | but full ref names for other kinds of refs (e.g., ``refs/tags/foo``). |
| 402 | Zuul matches what you put here exactly against what Gerrit |
| 403 | provides. This field is treated as a regular expression, and |
| 404 | multiple refs may be listed. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 405 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 406 | *approval* |
| 407 | This is only used for ``comment-added`` events. It only matches if |
| 408 | the event has a matching approval associated with it. Example: |
| 409 | ``code-review: 2`` matches a ``+2`` vote on the code review category. |
| 410 | Multiple approvals may be listed. |
Antoine Musso | b4e809e | 2012-12-06 16:58:06 +0100 | [diff] [blame] | 411 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 412 | *email_filter* |
| 413 | This is used for any event. It takes a regex applied on the performer |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 414 | email, i.e. Gerrit account email address. If you want to specify |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 415 | several email filters, you must use a YAML list. Make sure to use non |
| 416 | greedy matchers and to escapes dots! |
| 417 | Example: ``email_filter: ^.*?@example\.org$``. |
| 418 | |
Joshua Hesketh | b8a817e | 2013-12-27 11:21:38 +1100 | [diff] [blame] | 419 | *username_filter* |
| 420 | This is used for any event. It takes a regex applied on the performer |
| 421 | username, i.e. Gerrit account name. If you want to specify several |
| 422 | username filters, you must use a YAML list. Make sure to use non greedy |
| 423 | matchers and to escapes dots! |
| 424 | Example: ``username_filter: ^jenkins$``. |
| 425 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 426 | *comment_filter* |
| 427 | This is only used for ``comment-added`` events. It accepts a list of |
| 428 | regexes that are searched for in the comment string. If any of these |
| 429 | regexes matches a portion of the comment string the trigger is |
| 430 | matched. ``comment_filter: retrigger`` will match when comments |
| 431 | containing 'retrigger' somewhere in the comment text are added to a |
| 432 | change. |
Clark Boylan | b9bcb40 | 2012-06-29 17:44:05 -0700 | [diff] [blame] | 433 | |
James E. Blair | 11041d2 | 2014-05-02 14:49:53 -0700 | [diff] [blame] | 434 | *require-approval* (deprecated) |
James E. Blair | c053d02 | 2014-01-22 14:57:33 -0800 | [diff] [blame] | 435 | This may be used for any event. It requires that a certain kind |
| 436 | of approval be present for the current patchset of the change (the |
James E. Blair | 11041d2 | 2014-05-02 14:49:53 -0700 | [diff] [blame] | 437 | approval could be added by the event in question). It follows the |
| 438 | same syntax as the "approval" pipeline requirement below. This |
| 439 | form should be considered deprecated and the pipeline requirement |
| 440 | used instead. |
James E. Blair | c053d02 | 2014-01-22 14:57:33 -0800 | [diff] [blame] | 441 | |
James E. Blair | 63bb0ef | 2013-07-29 17:14:51 -0700 | [diff] [blame] | 442 | **timer** |
| 443 | This trigger will run based on a cron-style time specification. |
| 444 | It will enqueue an event into its pipeline for every project |
| 445 | defined in the configuration. Any job associated with the |
| 446 | pipeline will run in response to that event. |
| 447 | |
| 448 | *time* |
| 449 | The time specification in cron syntax. Only the 5 part syntax is |
| 450 | supported, not the symbolic names. Example: ``0 0 * * *`` runs |
| 451 | at midnight. |
| 452 | |
James E. Blair | 11041d2 | 2014-05-02 14:49:53 -0700 | [diff] [blame] | 453 | **require** |
| 454 | If this section is present, it established pre-requisites for any |
| 455 | kind of item entering the Pipeline. Regardless of how the item is |
| 456 | to be enqueued (via any trigger or automatic dependency resolution), |
| 457 | the conditions specified here must be met or the item will not be |
| 458 | enqueued. |
| 459 | |
| 460 | **approval** |
| 461 | This requires that a certain kind of approval be present for the |
| 462 | current patchset of the change (the approval could be added by the |
| 463 | event in question). It takes several sub-parameters, all of which |
| 464 | are optional and are combined together so that there must be an |
| 465 | approval matching all specified requirements. |
| 466 | |
| 467 | *username* |
| 468 | If present, an approval from this username is required. |
| 469 | |
| 470 | *email-filter* |
| 471 | If present, an approval with this email address is required. It |
| 472 | is treated as a regular expression as above. |
| 473 | |
| 474 | *older-than* |
| 475 | If present, the approval must be older than this amount of time |
| 476 | to match. Provide a time interval as a number with a suffix of |
| 477 | "w" (weeks), "d" (days), "h" (hours), "m" (minutes), "s" |
| 478 | (seconds). Example ``48h`` or ``2d``. |
| 479 | |
| 480 | *newer-than* |
| 481 | If present, the approval must be newer than this amount of time |
| 482 | to match. Same format as "older-than". |
| 483 | |
| 484 | Any other field is interpreted as a review category and value |
| 485 | pair. For example ``verified: 1`` would require that the approval |
| 486 | be for a +1 vote in the "Verified" column. |
| 487 | |
| 488 | **open** |
| 489 | A boolean value (``true`` or ``false``) that indicates whether the change |
| 490 | must be open or closed in order to be enqueued. |
| 491 | |
| 492 | **status** |
| 493 | A string value that corresponds with the status of the change |
| 494 | reported by the trigger. For example, when using the Gerrit |
| 495 | trigger, status values such as ``NEW`` or ``MERGED`` may be useful. |
James E. Blair | 63bb0ef | 2013-07-29 17:14:51 -0700 | [diff] [blame] | 496 | |
James E. Blair | 2fa5096 | 2013-01-30 21:50:41 -0800 | [diff] [blame] | 497 | **dequeue-on-new-patchset** |
| 498 | Normally, if a new patchset is uploaded to a change that is in a |
| 499 | pipeline, the existing entry in the pipeline will be removed (with |
| 500 | jobs canceled and any dependent changes that can no longer merge as |
| 501 | well. To suppress this behavior (and allow jobs to continue |
| 502 | running), set this to ``false``. Default: ``true``. |
| 503 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 504 | **success** |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 505 | Describes where Zuul should report to if all the jobs complete |
| 506 | successfully. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 507 | This section is optional; if it is omitted, Zuul will run jobs and |
| 508 | do nothing on success; it will not even report a message to Gerrit. |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 509 | If the section is present, the listed reporter plugins will be |
| 510 | asked to report on the jobs. |
| 511 | Each reporter's value dictionary is handled by the reporter. See |
| 512 | reporters for more details. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 513 | |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 514 | **failure** |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 515 | Uses the same syntax as **success**, but describes what Zuul should |
| 516 | do if at least one job fails. |
James E. Blair | dc25386 | 2012-06-13 17:12:42 -0700 | [diff] [blame] | 517 | |
Joshua Hesketh | b717977 | 2014-01-30 23:30:46 +1100 | [diff] [blame] | 518 | **merge-failure** |
| 519 | Uses the same syntax as **success**, but describes what Zuul should |
| 520 | do if it is unable to merge in the patchset. If no merge-failure |
| 521 | reporters are listed then the ``failure`` reporters will be used to |
| 522 | notify of unsuccessful merges. |
| 523 | |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 524 | **start** |
James E. Blair | dc25386 | 2012-06-13 17:12:42 -0700 | [diff] [blame] | 525 | Uses the same syntax as **success**, but describes what Zuul should |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 526 | do when a change is added to the pipeline manager. This can be used, |
James E. Blair | dc25386 | 2012-06-13 17:12:42 -0700 | [diff] [blame] | 527 | for example, to reset the value of the Verified review category. |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 528 | |
James E. Blair | 64ed6f2 | 2013-07-10 14:07:23 -0700 | [diff] [blame] | 529 | **precedence** |
| 530 | Indicates how the build scheduler should prioritize jobs for |
| 531 | different pipelines. Each pipeline may have one precedence, jobs |
| 532 | for pipelines with a higher precedence will be run before ones with |
| 533 | lower. The value should be one of ``high``, ``normal``, or ``low``. |
| 534 | Default: ``normal``. |
| 535 | |
Clark Boylan | c2d19e4 | 2014-01-23 14:08:58 -0800 | [diff] [blame] | 536 | **window** |
| 537 | DependentPipelineManagers only. Zuul can rate limit |
| 538 | DependentPipelineManagers in a manner similar to TCP flow control. |
| 539 | Jobs are only started for changes in the queue if they sit in the |
| 540 | actionable window for the pipeline. The initial length of this window |
| 541 | is configurable with this value. The value given should be a positive |
| 542 | integer value. A value of ``0`` disables rate limiting on the |
| 543 | DependentPipelineManager. |
| 544 | Default: ``20``. |
| 545 | |
| 546 | **window-floor** |
| 547 | DependentPipelineManagers only. This is the minimum value for the |
| 548 | window described above. Should be a positive non zero integer value. |
| 549 | Default: ``3``. |
| 550 | |
| 551 | **window-increase-type** |
| 552 | DependentPipelineManagers only. This value describes how the window |
| 553 | should grow when changes are successfully merged by zuul. A value of |
| 554 | ``linear`` indicates that ``window-increase-factor`` should be added |
| 555 | to the previous window value. A value of ``exponential`` indicates |
| 556 | that ``window-increase-factor`` should be multiplied against the |
| 557 | previous window value and the result will become the window size. |
| 558 | Default: ``linear``. |
| 559 | |
| 560 | **window-increase-factor** |
| 561 | DependentPipelineManagers only. The value to be added or mulitplied |
| 562 | against the previous window value to determine the new window after |
| 563 | successful change merges. |
| 564 | Default: ``1``. |
| 565 | |
| 566 | **window-decrease-type** |
| 567 | DependentPipelineManagers only. This value describes how the window |
| 568 | should shrink when changes are not able to be merged by Zuul. A value |
| 569 | of ``linear`` indicates that ``window-decrease-factor`` should be |
| 570 | subtracted from the previous window value. A value of ``exponential`` |
| 571 | indicates that ``window-decrease-factor`` should be divided against |
| 572 | the previous window value and the result will become the window size. |
| 573 | Default: ``exponential``. |
| 574 | |
| 575 | **window-decrease-factor** |
| 576 | DependentPipelineManagers only. The value to be subtracted or divided |
| 577 | against the previous window value to determine the new window after |
| 578 | unsuccessful change merges. |
| 579 | Default: ``2``. |
| 580 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 581 | Some example pipeline configurations are included in the sample layout |
| 582 | file. The first is called a *check* pipeline:: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 583 | |
| 584 | - name: check |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 585 | manager: IndependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 586 | trigger: |
| 587 | - event: patchset-created |
| 588 | success: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 589 | gerrit: |
| 590 | verified: 1 |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 591 | failure: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 592 | gerrit: |
| 593 | verified: -1 |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 594 | |
| 595 | This will trigger jobs each time a new patchset (or change) is |
| 596 | uploaded to Gerrit, and report +/-1 values to Gerrit in the |
| 597 | ``verified`` review category. :: |
| 598 | |
| 599 | - name: gate |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 600 | manager: DependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 601 | trigger: |
| 602 | - event: comment-added |
| 603 | approval: |
| 604 | - approved: 1 |
| 605 | success: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 606 | gerrit: |
| 607 | verified: 2 |
| 608 | submit: true |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 609 | failure: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 610 | gerrit: |
| 611 | verified: -2 |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 612 | |
| 613 | This will trigger jobs whenever a reviewer leaves a vote of ``1`` in the |
| 614 | ``approved`` review category in Gerrit (a non-standard category). |
| 615 | Changes will be tested in such a way as to guarantee that they will be |
| 616 | merged exactly as tested, though that will happen in parallel by |
| 617 | creating a virtual queue of dependent changes and performing |
| 618 | speculative execution of jobs. :: |
| 619 | |
| 620 | - name: post |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 621 | manager: IndependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 622 | trigger: |
| 623 | - event: ref-updated |
| 624 | ref: ^(?!refs/).*$ |
| 625 | |
| 626 | This will trigger jobs whenever a change is merged to a named branch |
| 627 | (e.g., ``master``). No output will be reported to Gerrit. This is |
| 628 | useful for side effects such as creating per-commit tarballs. :: |
| 629 | |
| 630 | - name: silent |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 631 | manager: IndependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 632 | trigger: |
| 633 | - event: patchset-created |
| 634 | |
| 635 | This also triggers jobs when changes are uploaded to Gerrit, but no |
| 636 | results are reported to Gerrit. This is useful for jobs that are in |
Antoine Musso | ce33384 | 2012-10-16 14:42:35 +0200 | [diff] [blame] | 637 | development and not yet ready to be presented to developers. :: |
| 638 | |
| 639 | pipelines: |
| 640 | - name: post-merge |
| 641 | manager: IndependentPipelineManager |
| 642 | trigger: |
| 643 | - event: change-merged |
| 644 | success: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 645 | gerrit: |
| 646 | force-message: True |
Antoine Musso | ce33384 | 2012-10-16 14:42:35 +0200 | [diff] [blame] | 647 | failure: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 648 | gerrit: |
| 649 | force-message: True |
Antoine Musso | ce33384 | 2012-10-16 14:42:35 +0200 | [diff] [blame] | 650 | |
| 651 | The ``change-merged`` events happen when a change has been merged in the git |
| 652 | repository. The change is thus closed and Gerrit will not accept modifications |
| 653 | to the review scoring such as ``code-review`` or ``verified``. By using the |
| 654 | ``force-message: True`` parameter, Zuul will pass ``--force-message`` to the |
| 655 | ``gerrit review`` command, thus making sure the message is actually |
| 656 | sent back to Gerrit regardless of approval scores. |
| 657 | That kind of pipeline is nice to run regression or performance tests. |
| 658 | |
| 659 | .. note:: |
| 660 | The ``change-merged`` event does not include the commit sha1 which can be |
| 661 | hazardous, it would let you report back to Gerrit though. If you were to |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 662 | build a tarball for a specific commit, you should consider instead using |
Łukasz Jernaś | 048acb4 | 2014-03-02 18:49:41 +0100 | [diff] [blame] | 663 | the ``ref-updated`` event which does include the commit sha1 (but lacks the |
Antoine Musso | ce33384 | 2012-10-16 14:42:35 +0200 | [diff] [blame] | 664 | Gerrit change number). |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 665 | |
Joshua Hesketh | 36c3fa5 | 2014-01-22 11:40:52 +1100 | [diff] [blame] | 666 | |
| 667 | .. _jobs: |
| 668 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 669 | Jobs |
| 670 | """" |
| 671 | |
| 672 | The jobs section is optional, and can be used to set attributes of |
| 673 | jobs that are independent of their association with a project. For |
| 674 | example, if a job should return a customized message on failure, that |
| 675 | may be specified here. Otherwise, Zuul does not need to be told about |
| 676 | each job as it builds a list from the project specification. |
| 677 | |
| 678 | **name** |
| 679 | The name of the job. This field is treated as a regular expression |
| 680 | and will be applied to each job that matches. |
| 681 | |
James E. Blair | c8a1e05 | 2014-02-25 09:29:26 -0800 | [diff] [blame] | 682 | **queue-name (optional)** |
| 683 | Zuul will automatically combine projects that share a job into |
| 684 | shared change queues for dependent pipeline managers. In order to |
| 685 | report statistics about these queues, it is convenient for them to |
| 686 | have names. Zuul can automatically name change queues, however |
| 687 | these can grow quite long and are prone to changing as projects in |
| 688 | the queue change. If you assign a queue-name to a job, Zuul will |
| 689 | use that as the name for the shared change queue that contains that |
| 690 | job instead of the automatically generated one. It is an error for |
| 691 | a shared change queue to have more than one job with a queue-name if |
| 692 | they are not the same. |
| 693 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 694 | **failure-message (optional)** |
| 695 | The message that should be reported to Gerrit if the job fails. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 696 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 697 | **success-message (optional)** |
| 698 | The message that should be reported to Gerrit if the job fails. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 699 | |
James E. Blair | 6aea36d | 2012-12-17 13:03:24 -0800 | [diff] [blame] | 700 | **failure-pattern (optional)** |
| 701 | The URL that should be reported to Gerrit if the job fails. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 702 | Defaults to the build URL or the url_pattern configured in |
James E. Blair | 6aea36d | 2012-12-17 13:03:24 -0800 | [diff] [blame] | 703 | zuul.conf. May be supplied as a string pattern with substitutions |
| 704 | as described in url_pattern in :ref:`zuulconf`. |
| 705 | |
| 706 | **success-pattern (optional)** |
| 707 | The URL that should be reported to Gerrit if the job succeeds. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 708 | Defaults to the build URL or the url_pattern configured in |
James E. Blair | 6aea36d | 2012-12-17 13:03:24 -0800 | [diff] [blame] | 709 | zuul.conf. May be supplied as a string pattern with substitutions |
| 710 | as described in url_pattern in :ref:`zuulconf`. |
| 711 | |
James E. Blair | 222d498 | 2012-07-16 09:31:19 -0700 | [diff] [blame] | 712 | **hold-following-changes (optional)** |
| 713 | This is a boolean that indicates that changes that follow this |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 714 | change in a dependent change pipeline should wait until this job |
James E. Blair | 222d498 | 2012-07-16 09:31:19 -0700 | [diff] [blame] | 715 | succeeds before launching. If this is applied to a very short job |
| 716 | that can predict whether longer jobs will fail early, this can be |
| 717 | used to reduce the number of jobs that Zuul will launch and |
| 718 | ultimately have to cancel. In that case, a small amount of |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 719 | parallelization of jobs is traded for more efficient use of testing |
James E. Blair | 222d498 | 2012-07-16 09:31:19 -0700 | [diff] [blame] | 720 | resources. On the other hand, to apply this to a long running job |
| 721 | would largely defeat the parallelization of dependent change testing |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 722 | that is the main feature of Zuul. Default: ``false``. |
James E. Blair | 222d498 | 2012-07-16 09:31:19 -0700 | [diff] [blame] | 723 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 724 | **branch (optional)** |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 725 | This job should only be run on matching branches. This field is |
| 726 | treated as a regular expression and multiple branches may be |
| 727 | listed. |
| 728 | |
James E. Blair | 70c7158 | 2013-03-06 08:50:50 -0800 | [diff] [blame] | 729 | **files (optional)** |
| 730 | This job should only be run if at least one of the files involved in |
| 731 | the change (added, deleted, or modified) matches at least one of the |
| 732 | file patterns listed here. This field is treated as a regular |
| 733 | expression and multiple expressions may be listed. |
| 734 | |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 735 | **voting (optional)** |
| 736 | Boolean value (``true`` or ``false``) that indicates whatever |
| 737 | a job is voting or not. Default: ``true``. |
| 738 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 739 | **parameter-function (optional)** |
| 740 | Specifies a function that should be applied to the parameters before |
| 741 | the job is launched. The function should be defined in a python file |
| 742 | included with the :ref:`includes` directive. The function |
| 743 | should have the following signature: |
| 744 | |
James E. Blair | d047097 | 2013-07-29 10:05:43 -0700 | [diff] [blame] | 745 | .. function:: parameters(item, job, parameters) |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 746 | |
| 747 | Manipulate the parameters passed to a job before a build is |
| 748 | launched. The ``parameters`` dictionary will already contain the |
| 749 | standard Zuul job parameters, and is expected to be modified |
| 750 | in-place. |
| 751 | |
James E. Blair | d78576a | 2013-07-09 10:39:17 -0700 | [diff] [blame] | 752 | :param item: the current queue item |
| 753 | :type item: zuul.model.QueueItem |
James E. Blair | d047097 | 2013-07-29 10:05:43 -0700 | [diff] [blame] | 754 | :param job: the job about to be run |
| 755 | :type job: zuul.model.Job |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 756 | :param parameters: parameters to be passed to the job |
| 757 | :type parameters: dict |
| 758 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 759 | If the parameter **ZUUL_NODE** is set by this function, then it will |
| 760 | be used to specify on what node (or class of node) the job should be |
| 761 | run. |
| 762 | |
Joshua Hesketh | 36c3fa5 | 2014-01-22 11:40:52 +1100 | [diff] [blame] | 763 | **swift** |
| 764 | If :ref:`swift` is configured then each job can define a destination |
| 765 | container for the builder to place logs and/or assets into. Multiple |
| 766 | containers can be listed for each job by providing a unique ``name``. |
| 767 | |
| 768 | *name* |
| 769 | Set an identifying name for the container. This is used in the |
| 770 | parameter key sent to the builder. For example if it ``logs`` then |
| 771 | one of the parameters sent will be ``SWIFT_logs_CONTAINER`` |
| 772 | (case-sensitive). |
| 773 | |
| 774 | Each of the defaults defined in :ref:`swift` can be overwritten as: |
| 775 | |
| 776 | *container* (optional) |
| 777 | Container name to place the log into |
| 778 | ``For example, logs`` |
| 779 | |
| 780 | *expiry* (optional) |
| 781 | How long the signed destination should be available for |
| 782 | |
| 783 | *max_file_size** (optional) |
| 784 | The maximum size of an individual file |
| 785 | |
| 786 | *max_file_count* (optional) |
| 787 | The maximum number of separate files to allow |
| 788 | |
| 789 | *logserver_prefix* |
| 790 | Provide a URL to the CDN or logserver app so that a worker knows |
| 791 | what URL to return. |
| 792 | ``For example: http://logs.example.org/server.app?obj=`` |
| 793 | The worker should return the logserver_prefix url and the object |
| 794 | path as the URL in the results data packet. |
| 795 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 796 | Here is an example of setting the failure message for jobs that check |
| 797 | whether a change merges cleanly:: |
| 798 | |
| 799 | - name: ^.*-merge$ |
| 800 | failure-message: This change was unable to be automatically merged |
| 801 | with the current state of the repository. Please rebase your |
| 802 | change and upload a new patchset. |
| 803 | |
| 804 | Projects |
| 805 | """""""" |
| 806 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 807 | The projects section indicates what jobs should be run in each pipeline |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 808 | for events associated with each project. It contains a list of |
| 809 | projects. Here is an example:: |
| 810 | |
| 811 | - name: example/project |
| 812 | check: |
| 813 | - project-merge: |
| 814 | - project-unittest |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 815 | - project-pep8 |
| 816 | - project-pyflakes |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 817 | gate: |
| 818 | - project-merge: |
| 819 | - project-unittest |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 820 | - project-pep8 |
| 821 | - project-pyflakes |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 822 | post: |
| 823 | - project-publish |
| 824 | |
| 825 | **name** |
| 826 | The name of the project (as known by Gerrit). |
| 827 | |
James E. Blair | 19deff2 | 2013-08-25 13:17:35 -0700 | [diff] [blame] | 828 | **merge-mode (optional)** |
| 829 | An optional value that indicates what strategy should be used to |
| 830 | merge changes to this project. Supported values are: |
| 831 | |
| 832 | ** merge-resolve ** |
| 833 | Equivalent to 'git merge -s resolve'. This corresponds closely to |
| 834 | what Gerrit performs (using JGit) for a project if the "Merge if |
| 835 | necessary" merge mode is selected and "Automatically resolve |
| 836 | conflicts" is checked. This is the default. |
| 837 | |
| 838 | ** merge ** |
| 839 | Equivalent to 'git merge'. |
| 840 | |
| 841 | ** cherry-pick ** |
| 842 | Equivalent to 'git cherry-pick'. |
| 843 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 844 | This is followed by a section for each of the pipelines defined above. |
| 845 | Pipelines may be omitted if no jobs should run for this project in a |
| 846 | given pipeline. Within the pipeline section, the jobs that should be |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 847 | executed are listed. If a job is entered as a dictionary key, then |
| 848 | jobs contained within that key are only executed if the key job |
| 849 | succeeds. In the above example, project-unittest, project-pep8, and |
| 850 | project-pyflakes are only executed if project-merge succeeds. This |
| 851 | can help avoid running unnecessary jobs. |
| 852 | |
James E. Blair | 18c6444 | 2014-03-18 10:14:45 -0700 | [diff] [blame] | 853 | The special job named ``noop`` is internal to Zuul and will always |
| 854 | return ``SUCCESS`` immediately. This can be useful if you require |
| 855 | that all changes be processed by a pipeline but a project has no jobs |
| 856 | that can be run on it. |
| 857 | |
Paul Belanger | ffef9e4 | 2013-02-11 22:15:18 -0500 | [diff] [blame] | 858 | .. seealso:: The OpenStack Zuul configuration for a comprehensive example: https://github.com/openstack-infra/config/blob/master/modules/openstack_project/files/zuul/layout.yaml |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 859 | |
Antoine Musso | 80edd5a | 2013-02-13 15:37:53 +0100 | [diff] [blame] | 860 | Project Templates |
| 861 | """"""""""""""""" |
| 862 | |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 863 | Whenever you have lot of similar projects (such as plugins for a project) you |
Antoine Musso | 80edd5a | 2013-02-13 15:37:53 +0100 | [diff] [blame] | 864 | will most probably want to use the same pipeline configurations. The |
| 865 | project templates let you define pipelines and job name templates to trigger. |
| 866 | One can then just apply the template on its project which make it easier to |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 867 | update several similar projects. As an example:: |
Antoine Musso | 80edd5a | 2013-02-13 15:37:53 +0100 | [diff] [blame] | 868 | |
| 869 | project-templates: |
| 870 | # Name of the template |
| 871 | - name: plugin-triggering |
| 872 | # Definition of pipelines just like for a `project` |
| 873 | check: |
| 874 | - '{jobprefix}-merge': |
| 875 | - '{jobprefix}-pep8' |
| 876 | - '{jobprefix}-pyflakes' |
| 877 | gate: |
| 878 | - '{jobprefix}-merge': |
| 879 | - '{jobprefix}-unittest' |
| 880 | - '{jobprefix}-pep8' |
| 881 | - '{jobprefix}-pyflakes' |
| 882 | |
| 883 | In your projects definition, you will then apply the template using the template |
| 884 | key:: |
| 885 | |
| 886 | projects: |
| 887 | - name: plugin/foobar |
| 888 | template: |
| 889 | - name: plugin-triggering |
| 890 | jobprefix: plugin-foobar |
| 891 | |
James E. Blair | aea6cf6 | 2013-12-16 15:38:12 -0800 | [diff] [blame] | 892 | You can pass several parameters to a template. A ``parameter`` value |
| 893 | will be used for expansion of ``{parameter}`` in the template |
| 894 | strings. The parameter ``name`` will be automatically provided and |
| 895 | will contain the short name of the project, that is the portion of the |
| 896 | project name after the last ``/`` character. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 897 | |
James E. Blair | 3e98c02 | 2013-12-16 15:25:38 -0800 | [diff] [blame] | 898 | Multiple templates can be combined in a project, and the jobs from all |
| 899 | of those templates will be added to the project. Individual jobs may |
| 900 | also be added:: |
| 901 | |
| 902 | projects: |
| 903 | - name: plugin/foobar |
| 904 | template: |
| 905 | - name: plugin-triggering |
| 906 | jobprefix: plugin-foobar |
| 907 | - name: plugin-extras |
| 908 | jobprefix: plugin-foobar |
| 909 | check: |
| 910 | - foobar-extra-special-job |
| 911 | |
| 912 | The order of the jobs listed in the project (which only affects the |
| 913 | order of jobs listed on the report) will be the jobs from each |
| 914 | template in the order listed, followed by any jobs individually listed |
| 915 | for the project. |
| 916 | |
| 917 | Note that if multiple templates are used for a project and one |
| 918 | template specifies a job that is also specified in another template, |
James E. Blair | 12a92b1 | 2014-03-26 11:54:53 -0700 | [diff] [blame] | 919 | or specified in the project itself, the configuration defined by |
| 920 | either the last template or the project itself will take priority. |
James E. Blair | 3e98c02 | 2013-12-16 15:25:38 -0800 | [diff] [blame] | 921 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 922 | logging.conf |
| 923 | ~~~~~~~~~~~~ |
| 924 | This file is optional. If provided, it should be a standard |
| 925 | :mod:`logging.config` module configuration file. If not present, Zuul will |
| 926 | output all log messages of DEBUG level or higher to the console. |
| 927 | |
| 928 | Starting Zuul |
| 929 | ------------- |
| 930 | |
| 931 | To start Zuul, run **zuul-server**:: |
| 932 | |
Antoine Musso | b3aa828 | 2013-04-19 15:16:59 +0200 | [diff] [blame] | 933 | usage: zuul-server [-h] [-c CONFIG] [-l LAYOUT] [-d] [-t] [--version] |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 934 | |
| 935 | Project gating system. |
| 936 | |
| 937 | optional arguments: |
| 938 | -h, --help show this help message and exit |
| 939 | -c CONFIG specify the config file |
Antoine Musso | b3aa828 | 2013-04-19 15:16:59 +0200 | [diff] [blame] | 940 | -l LAYOUT specify the layout file |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 941 | -d do not run as a daemon |
Antoine Musso | b3aa828 | 2013-04-19 15:16:59 +0200 | [diff] [blame] | 942 | -t validate layout file syntax |
| 943 | --version show zuul version |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 944 | |
| 945 | You may want to use the ``-d`` argument while you are initially setting |
| 946 | up Zuul so you can detect any configuration errors quickly. Under |
| 947 | normal operation, omit ``-d`` and let Zuul run as a daemon. |
| 948 | |
| 949 | If you send signal 1 (SIGHUP) to the zuul-server process, Zuul will |
| 950 | stop executing new jobs, wait until all executing jobs are finished, |
| 951 | reload its configuration, and resume. Any values in any of the |
| 952 | configuration files may be changed, except the location of Zuul's PID |
| 953 | file (a change to that will be ignored until Zuul is restarted). |
Clark Boylan | f231fa2 | 2013-02-08 12:28:53 -0800 | [diff] [blame] | 954 | |
| 955 | If you send a SIGUSR1 to the zuul-server process, Zuul will stop |
| 956 | executing new jobs, wait until all executing jobs are finished, |
| 957 | then exit. While waiting to exit Zuul will queue Gerrit events and |
| 958 | save these events prior to exiting. When Zuul starts again it will |
| 959 | read these saved events and act on them. |
Jeremy Stanley | 93e05f4 | 2013-03-08 17:29:17 +0000 | [diff] [blame] | 960 | |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 961 | If you need to abort Zuul and intend to manually requeue changes for |
Jeremy Stanley | 93e05f4 | 2013-03-08 17:29:17 +0000 | [diff] [blame] | 962 | jobs which were running in its pipelines, prior to terminating you can |
| 963 | use the zuul-changes.py tool script to simplify the process. For |
| 964 | example, this would give you a list of Gerrit commands to reverify or |
| 965 | recheck changes for the gate and check pipelines respectively:: |
| 966 | |
| 967 | ./tools/zuul-changes.py --review-host=review.openstack.org \ |
| 968 | http://zuul.openstack.org/ gate 'reverify no bug' |
| 969 | ./tools/zuul-changes.py --review-host=review.openstack.org \ |
| 970 | http://zuul.openstack.org/ check 'recheck no bug' |
Clark Boylan | fba9b24 | 2013-08-20 10:11:17 -0700 | [diff] [blame] | 971 | |
| 972 | If you send a SIGUSR2 to the zuul-server process, Zuul will dump a stack |
| 973 | trace for each running thread into its debug log. This is useful for |
| 974 | tracking down deadlock or otherwise slow threads. |