blob: 56a8992f7fb1520b9a3de0a3c2e01d94ef0fc53f [file] [log] [blame]
James E. Blaircdd00072012-06-08 19:17:28 -07001:title: Zuul
2
3Zuul
4====
5
6Configuration
7-------------
8
9Zuul has three configuration files:
10
11**zuul.conf**
James E. Blair1f4c2bb2013-04-26 08:40:46 -070012 Connection information for Gerrit and Gearman, locations of the
Łukasz Jernaś048acb42014-03-02 18:49:41 +010013 other config files.
James E. Blaircdd00072012-06-08 19:17:28 -070014**layout.yaml**
Łukasz Jernaś048acb42014-03-02 18:49:41 +010015 Project and pipeline configuration -- what Zuul does.
James E. Blaircdd00072012-06-08 19:17:28 -070016**logging.conf**
Łukasz Jernaś048acb42014-03-02 18:49:41 +010017 Python logging config.
James E. Blaircdd00072012-06-08 19:17:28 -070018
19Examples of each of the three files can be found in the etc/ directory
20of the source distribution.
21
James E. Blair6aea36d2012-12-17 13:03:24 -080022.. _zuulconf:
23
James E. Blaircdd00072012-06-08 19:17:28 -070024zuul.conf
25~~~~~~~~~
26
27Zuul will look for ``/etc/zuul/zuul.conf`` or ``~/zuul.conf`` to
28bootstrap its configuration. Alternately, you may specify ``-c
29/path/to/zuul.conf`` on the command line.
30
James E. Blair1f4c2bb2013-04-26 08:40:46 -070031Gerrit and Gearman connection information are each described in a
32section of zuul.conf. The location of the other two configuration
33files (as well as the location of the PID file when running Zuul as a
34server) are specified in a third section.
James E. Blaircdd00072012-06-08 19:17:28 -070035
Clark Boylan9b670902012-09-28 13:47:56 -070036The three sections of this config and their options are documented below.
37You can also find an example zuul.conf file in the git
38`repository
K Jonathan Harker97e457e2013-02-26 13:29:38 -080039<https://github.com/openstack-infra/zuul/blob/master/etc/zuul.conf-sample>`_
Clark Boylan9b670902012-09-28 13:47:56 -070040
James E. Blair1f4c2bb2013-04-26 08:40:46 -070041gearman
Clark Boylan9b670902012-09-28 13:47:56 -070042"""""""
43
44**server**
James E. Blair1f4c2bb2013-04-26 08:40:46 -070045 Hostname or IP address of the Gearman server.
46 ``server=gearman.example.com``
Clark Boylan9b670902012-09-28 13:47:56 -070047
James E. Blair1f4c2bb2013-04-26 08:40:46 -070048**port**
Łukasz Jernaś048acb42014-03-02 18:49:41 +010049 Port on which the Gearman server is listening.
James E. Blair1f4c2bb2013-04-26 08:40:46 -070050 ``port=4730``
Clark Boylan9b670902012-09-28 13:47:56 -070051
James E. Blair77cc7b82013-07-15 13:22:37 -070052gearman_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 Boylan9b670902012-09-28 13:47:56 -070063gerrit
64""""""
65
66**server**
67 FQDN of Gerrit server.
68 ``server=review.example.com``
69
Akihiro Motokic7d28a72014-03-22 09:21:38 +090070**port**
71 Optional: Gerrit server port.
72 ``port=29418``
73
Antoine Musso27475012012-11-26 09:53:01 +010074**baseurl**
75 Optional: path to Gerrit web interface. Defaults to ``https://<value
76 of server>/``. ``baseurl=https://review.example.com/review_site/``
77
Clark Boylan9b670902012-09-28 13:47:56 -070078**user**
79 User name to use when logging into above server via ssh.
James E. Blair1f4c2bb2013-04-26 08:40:46 -070080 ``user=zuul``
Clark Boylan9b670902012-09-28 13:47:56 -070081
82**sshkey**
83 Path to SSH key to use when logging into above server.
James E. Blair1f4c2bb2013-04-26 08:40:46 -070084 ``sshkey=/home/zuul/.ssh/id_rsa``
Clark Boylan9b670902012-09-28 13:47:56 -070085
86zuul
87""""
88
89**layout_config**
James E. Blair4076e2b2014-01-28 12:42:20 -080090 Path to layout config file. Used by zuul-server only.
Clark Boylan9b670902012-09-28 13:47:56 -070091 ``layout_config=/etc/zuul/layout.yaml``
92
93**log_config**
James E. Blaira4430132014-02-17 08:32:07 -080094 Path to log config file. Used by zuul-server only.
Clark Boylan9b670902012-09-28 13:47:56 -070095 ``log_config=/etc/zuul/logging.yaml``
96
97**pidfile**
James E. Blaira4430132014-02-17 08:32:07 -080098 Path to PID lock file. Used by zuul-server only.
Clark Boylan9b670902012-09-28 13:47:56 -070099 ``pidfile=/var/run/zuul/zuul.pid``
100
101**state_dir**
James E. Blair4076e2b2014-01-28 12:42:20 -0800102 Path to directory that Zuul should save state to. Used by all Zuul
103 commands.
Clark Boylan9b670902012-09-28 13:47:56 -0700104 ``state_dir=/var/lib/zuul``
105
James E. Blair4076e2b2014-01-28 12:42:20 -0800106**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
130merger
131""""""
132
Clark Boylan9b670902012-09-28 13:47:56 -0700133**git_dir**
134 Directory that Zuul should clone local git repositories to.
135 ``git_dir=/var/lib/zuul/git``
136
Paul Belangerb67aba12013-05-13 19:22:14 -0400137**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 Cruzb1b010d2013-10-28 19:49:59 -0200145**zuul_url**
James E. Blair4076e2b2014-01-28 12:42:20 -0800146 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 Cruzb1b010d2013-10-28 19:49:59 -0200149
James E. Blaira4430132014-02-17 08:32:07 -0800150**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 Hesketh5fea8672013-08-19 17:32:01 +1000158smtp
159""""
160
161**server**
162 SMTP server hostname or address to use.
163 ``server=localhost``
164
Akihiro Motokic7d28a72014-03-22 09:21:38 +0900165**port**
166 Optional: SMTP server port.
167 ``port=25``
168
Joshua Hesketh5fea8672013-08-19 17:32:01 +1000169**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
James E. Blaircdd00072012-06-08 19:17:28 -0700179layout.yaml
180~~~~~~~~~~~
181
Clark Boylan00635dc2012-09-19 14:03:08 -0700182This is the main configuration file for Zuul, where all of the pipelines
James E. Blaircdd00072012-06-08 19:17:28 -0700183and projects are defined, what tests should be run, and what actions
Clark Boylan00635dc2012-09-19 14:03:08 -0700184Zuul should perform. There are three sections: pipelines, jobs, and
James E. Blaircdd00072012-06-08 19:17:28 -0700185projects.
186
James E. Blaire5a847f2012-07-10 15:29:14 -0700187.. _includes:
188
189Includes
190""""""""
191
192Custom functions to be used in Zuul's configuration may be provided
193using the ``includes`` directive. It accepts a list of files to
194include, and currently supports one type of inclusion, a python file::
195
196 includes:
197 - python-file: local_functions.py
198
199**python-file**
200 The path to a python file. The file will be loaded and objects that
201 it defines will be placed in a special environment which can be
202 referenced in the Zuul configuration. Currently only the
203 parameter-function attribute of a Job uses this feature.
204
Clark Boylan00635dc2012-09-19 14:03:08 -0700205Pipelines
206"""""""""
James E. Blaircdd00072012-06-08 19:17:28 -0700207
Clark Boylan00635dc2012-09-19 14:03:08 -0700208Zuul can have any number of independent pipelines. Whenever a matching
209Gerrit event is found for a pipeline, that event is added to the
210pipeline, and the jobs specified for that pipeline are run. When all
211jobs specified for the pipeline that were triggered by an event are
212completed, Zuul reports back to Gerrit the results.
James E. Blaircdd00072012-06-08 19:17:28 -0700213
Clark Boylan00635dc2012-09-19 14:03:08 -0700214There are no pre-defined pipelines in Zuul, rather you can define
215whatever pipelines you need in the layout file. This is a very flexible
216system that can accommodate many kinds of workflows.
James E. Blaircdd00072012-06-08 19:17:28 -0700217
Clark Boylan00635dc2012-09-19 14:03:08 -0700218Here is a quick example of a pipeline definition followed by an
James E. Blaircdd00072012-06-08 19:17:28 -0700219explanation of each of the parameters::
220
221 - name: check
Clark Boylan00635dc2012-09-19 14:03:08 -0700222 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700223 trigger:
James E. Blair6c358e72013-07-29 17:06:47 -0700224 gerrit:
225 - event: patchset-created
James E. Blaircdd00072012-06-08 19:17:28 -0700226 success:
227 verified: 1
228 failure:
229 verified: -1
230
231**name**
232 This is used later in the project definition to indicate what jobs
Clark Boylan00635dc2012-09-19 14:03:08 -0700233 should be run for events in the pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700234
James E. Blair8dbd56a2012-12-22 10:55:10 -0800235**description**
236 This is an optional field that may be used to provide a textual
237 description of the pipeline.
238
James E. Blair56370192013-01-14 15:47:28 -0800239**success-message**
240 An optional field that supplies the introductory text in message
241 reported back to Gerrit when all the voting builds are successful.
242 Defaults to "Build successful."
243
244**failure-message**
245 An optional field that supplies the introductory text in message
246 reported back to Gerrit when at least one voting build fails.
247 Defaults to "Build failed."
248
Joshua Hesketh3979e3e2014-03-04 11:21:10 +1100249**footer-message**
250 An optional field to supply additional information after test results.
251 Useful for adding information about the CI system such as debugging
252 and contact details.
253
James E. Blaircdd00072012-06-08 19:17:28 -0700254**manager**
Clark Boylan00635dc2012-09-19 14:03:08 -0700255 There are currently two schemes for managing pipelines:
James E. Blaircdd00072012-06-08 19:17:28 -0700256
Clark Boylan00635dc2012-09-19 14:03:08 -0700257 *IndependentPipelineManager*
258 Every event in this pipeline should be treated as independent of
259 other events in the pipeline. This is appropriate when the order of
260 events in the pipeline doesn't matter because the results of the
261 actions this pipeline performs can not affect other events in the
262 pipeline. For example, when a change is first uploaded for review,
James E. Blaircdd00072012-06-08 19:17:28 -0700263 you may want to run tests on that change to provide early feedback
264 to reviewers. At the end of the tests, the change is not going to
265 be merged, so it is safe to run these tests in parallel without
Clark Boylan00635dc2012-09-19 14:03:08 -0700266 regard to any other changes in the pipeline. They are independent.
James E. Blaircdd00072012-06-08 19:17:28 -0700267
Clark Boylan00635dc2012-09-19 14:03:08 -0700268 Another type of pipeline that is independent is a post-merge
269 pipeline. In that case, the changes have already merged, so the
270 results can not affect any other events in the pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700271
Clark Boylan00635dc2012-09-19 14:03:08 -0700272 *DependentPipelineManager*
273 The dependent pipeline manager is designed for gating. It ensures
James E. Blaircdd00072012-06-08 19:17:28 -0700274 that every change is tested exactly as it is going to be merged
275 into the repository. An ideal gating system would test one change
276 at a time, applied to the tip of the repository, and only if that
277 change passed tests would it be merged. Then the next change in
278 line would be tested the same way. In order to achieve parallel
Clark Boylan00635dc2012-09-19 14:03:08 -0700279 testing of changes, the dependent pipeline manager performs
James E. Blaircdd00072012-06-08 19:17:28 -0700280 speculative execution on changes. It orders changes based on
Clark Boylan00635dc2012-09-19 14:03:08 -0700281 their entry into the pipeline. It begins testing all changes in
282 parallel, assuming that each change ahead in the pipeline will pass
James E. Blaircdd00072012-06-08 19:17:28 -0700283 its tests. If they all succeed, all the changes can be tested and
Clark Boylan00635dc2012-09-19 14:03:08 -0700284 merged in parallel. If a change near the front of the pipeline
285 fails its tests, each change behind it ignores whatever tests have
286 been completed and are tested again without the change in front.
287 This way gate tests may run in parallel but still be tested
288 correctly, exactly as they will appear in the repository when
289 merged.
James E. Blaircdd00072012-06-08 19:17:28 -0700290
Clark Boylan00635dc2012-09-19 14:03:08 -0700291 One important characteristic of the DependentPipelineManager is that
James E. Blaircdd00072012-06-08 19:17:28 -0700292 it analyzes the jobs that are triggered by different projects, and
293 if those projects have jobs in common, it treats those projects as
294 related, and they share a single virtual queue of changes. Thus,
295 if there is a job that performs integration testing on two
296 projects, those two projects will automatically share a virtual
297 change queue. If a third project does not invoke that job, it
Clark Boylan00635dc2012-09-19 14:03:08 -0700298 will be part of a separate virtual change queue, and changes to
299 it will not depend on changes to the first two jobs.
James E. Blaircdd00072012-06-08 19:17:28 -0700300
301 For more detail on the theory and operation of Zuul's
Clark Boylan00635dc2012-09-19 14:03:08 -0700302 DependentPipelineManager, see: :doc:`gating`.
James E. Blaircdd00072012-06-08 19:17:28 -0700303
304**trigger**
James E. Blair6c358e72013-07-29 17:06:47 -0700305 Exactly one trigger source must be supplied for each pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700306 Triggers are not exclusive -- matching events may be placed in
James E. Blair6c358e72013-07-29 17:06:47 -0700307 multiple pipelines, and they will behave independently in each of
308 the pipelines they match. You may select from the following:
James E. Blaircdd00072012-06-08 19:17:28 -0700309
James E. Blair6c358e72013-07-29 17:06:47 -0700310 **gerrit**
311 This describes what Gerrit events should be placed in the
312 pipeline. Multiple gerrit triggers may be listed. Further
313 parameters describe the kind of events that match:
James E. Blaircdd00072012-06-08 19:17:28 -0700314
James E. Blair6c358e72013-07-29 17:06:47 -0700315 *event*
316 The event name from gerrit. Examples: ``patchset-created``,
317 ``comment-added``, ``ref-updated``. This field is treated as a
318 regular expression.
James E. Blaircdd00072012-06-08 19:17:28 -0700319
James E. Blair6c358e72013-07-29 17:06:47 -0700320 *branch*
321 The branch associated with the event. Example: ``master``. This
322 field is treated as a regular expression, and multiple branches may
323 be listed.
James E. Blaircdd00072012-06-08 19:17:28 -0700324
James E. Blair6c358e72013-07-29 17:06:47 -0700325 *ref*
326 On ref-updated events, the branch parameter is not used, instead the
327 ref is provided. Currently Gerrit has the somewhat idiosyncratic
328 behavior of specifying bare refs for branch names (e.g., ``master``),
329 but full ref names for other kinds of refs (e.g., ``refs/tags/foo``).
330 Zuul matches what you put here exactly against what Gerrit
331 provides. This field is treated as a regular expression, and
332 multiple refs may be listed.
James E. Blaircdd00072012-06-08 19:17:28 -0700333
James E. Blair6c358e72013-07-29 17:06:47 -0700334 *approval*
335 This is only used for ``comment-added`` events. It only matches if
336 the event has a matching approval associated with it. Example:
337 ``code-review: 2`` matches a ``+2`` vote on the code review category.
338 Multiple approvals may be listed.
Antoine Mussob4e809e2012-12-06 16:58:06 +0100339
James E. Blair6c358e72013-07-29 17:06:47 -0700340 *email_filter*
341 This is used for any event. It takes a regex applied on the performer
Michael Prokop526926a2013-10-24 16:16:57 +0200342 email, i.e. Gerrit account email address. If you want to specify
James E. Blair6c358e72013-07-29 17:06:47 -0700343 several email filters, you must use a YAML list. Make sure to use non
344 greedy matchers and to escapes dots!
345 Example: ``email_filter: ^.*?@example\.org$``.
346
Joshua Heskethb8a817e2013-12-27 11:21:38 +1100347 *username_filter*
348 This is used for any event. It takes a regex applied on the performer
349 username, i.e. Gerrit account name. If you want to specify several
350 username filters, you must use a YAML list. Make sure to use non greedy
351 matchers and to escapes dots!
352 Example: ``username_filter: ^jenkins$``.
353
James E. Blair6c358e72013-07-29 17:06:47 -0700354 *comment_filter*
355 This is only used for ``comment-added`` events. It accepts a list of
356 regexes that are searched for in the comment string. If any of these
357 regexes matches a portion of the comment string the trigger is
358 matched. ``comment_filter: retrigger`` will match when comments
359 containing 'retrigger' somewhere in the comment text are added to a
360 change.
Clark Boylanb9bcb402012-06-29 17:44:05 -0700361
James E. Blairc053d022014-01-22 14:57:33 -0800362 *require-approval*
363 This may be used for any event. It requires that a certain kind
364 of approval be present for the current patchset of the change (the
365 approval could be added by the event in question). It takes
366 several sub-parameters, all of which are optional and are combined
367 together so that there must be an approval matching all specified
368 requirements.
369
370 *username*
371 If present, an approval from this username is required.
372
373 *email-filter*
374 If present, an approval with this email address is required. It
375 is treated as a regular expression as above.
376
377 *older-than*
378 If present, the approval must be older than this amount of time
379 to match. Provide a time interval as a number with a suffix of
380 "w" (weeks), "d" (days), "h" (hours), "m" (minutes), "s"
Łukasz Jernaś048acb42014-03-02 18:49:41 +0100381 (seconds). Example ``48h`` or ``2d``.
James E. Blairc053d022014-01-22 14:57:33 -0800382
383 *newer-than*
384 If present, the approval must be newer than this amount of time
385 to match. Same format as "older-than".
386
387 Any other field is interpreted as a review category and value
Łukasz Jernaś048acb42014-03-02 18:49:41 +0100388 pair. For example ``verified: 1`` would require that the approval
James E. Blairc053d022014-01-22 14:57:33 -0800389 be for a +1 vote in the "Verified" column.
390
James E. Blair63bb0ef2013-07-29 17:14:51 -0700391 **timer**
392 This trigger will run based on a cron-style time specification.
393 It will enqueue an event into its pipeline for every project
394 defined in the configuration. Any job associated with the
395 pipeline will run in response to that event.
396
397 *time*
398 The time specification in cron syntax. Only the 5 part syntax is
399 supported, not the symbolic names. Example: ``0 0 * * *`` runs
400 at midnight.
401
402
James E. Blair2fa50962013-01-30 21:50:41 -0800403**dequeue-on-new-patchset**
404 Normally, if a new patchset is uploaded to a change that is in a
405 pipeline, the existing entry in the pipeline will be removed (with
406 jobs canceled and any dependent changes that can no longer merge as
407 well. To suppress this behavior (and allow jobs to continue
408 running), set this to ``false``. Default: ``true``.
409
James E. Blaircdd00072012-06-08 19:17:28 -0700410**success**
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000411 Describes where Zuul should report to if all the jobs complete
412 successfully.
James E. Blaircdd00072012-06-08 19:17:28 -0700413 This section is optional; if it is omitted, Zuul will run jobs and
414 do nothing on success; it will not even report a message to Gerrit.
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000415 If the section is present, the listed reporter plugins will be
416 asked to report on the jobs.
417 Each reporter's value dictionary is handled by the reporter. See
418 reporters for more details.
James E. Blaircdd00072012-06-08 19:17:28 -0700419
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400420**failure**
James E. Blaircdd00072012-06-08 19:17:28 -0700421 Uses the same syntax as **success**, but describes what Zuul should
422 do if at least one job fails.
James E. Blairdc253862012-06-13 17:12:42 -0700423
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400424**start**
James E. Blairdc253862012-06-13 17:12:42 -0700425 Uses the same syntax as **success**, but describes what Zuul should
Clark Boylan00635dc2012-09-19 14:03:08 -0700426 do when a change is added to the pipeline manager. This can be used,
James E. Blairdc253862012-06-13 17:12:42 -0700427 for example, to reset the value of the Verified review category.
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400428
James E. Blair64ed6f22013-07-10 14:07:23 -0700429**precedence**
430 Indicates how the build scheduler should prioritize jobs for
431 different pipelines. Each pipeline may have one precedence, jobs
432 for pipelines with a higher precedence will be run before ones with
433 lower. The value should be one of ``high``, ``normal``, or ``low``.
434 Default: ``normal``.
435
Clark Boylanc2d19e42014-01-23 14:08:58 -0800436**window**
437 DependentPipelineManagers only. Zuul can rate limit
438 DependentPipelineManagers in a manner similar to TCP flow control.
439 Jobs are only started for changes in the queue if they sit in the
440 actionable window for the pipeline. The initial length of this window
441 is configurable with this value. The value given should be a positive
442 integer value. A value of ``0`` disables rate limiting on the
443 DependentPipelineManager.
444 Default: ``20``.
445
446**window-floor**
447 DependentPipelineManagers only. This is the minimum value for the
448 window described above. Should be a positive non zero integer value.
449 Default: ``3``.
450
451**window-increase-type**
452 DependentPipelineManagers only. This value describes how the window
453 should grow when changes are successfully merged by zuul. A value of
454 ``linear`` indicates that ``window-increase-factor`` should be added
455 to the previous window value. A value of ``exponential`` indicates
456 that ``window-increase-factor`` should be multiplied against the
457 previous window value and the result will become the window size.
458 Default: ``linear``.
459
460**window-increase-factor**
461 DependentPipelineManagers only. The value to be added or mulitplied
462 against the previous window value to determine the new window after
463 successful change merges.
464 Default: ``1``.
465
466**window-decrease-type**
467 DependentPipelineManagers only. This value describes how the window
468 should shrink when changes are not able to be merged by Zuul. A value
469 of ``linear`` indicates that ``window-decrease-factor`` should be
470 subtracted from the previous window value. A value of ``exponential``
471 indicates that ``window-decrease-factor`` should be divided against
472 the previous window value and the result will become the window size.
473 Default: ``exponential``.
474
475**window-decrease-factor**
476 DependentPipelineManagers only. The value to be subtracted or divided
477 against the previous window value to determine the new window after
478 unsuccessful change merges.
479 Default: ``2``.
480
Clark Boylan00635dc2012-09-19 14:03:08 -0700481Some example pipeline configurations are included in the sample layout
482file. The first is called a *check* pipeline::
James E. Blaircdd00072012-06-08 19:17:28 -0700483
484 - name: check
Clark Boylan00635dc2012-09-19 14:03:08 -0700485 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700486 trigger:
487 - event: patchset-created
488 success:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000489 gerrit:
490 verified: 1
James E. Blaircdd00072012-06-08 19:17:28 -0700491 failure:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000492 gerrit:
493 verified: -1
James E. Blaircdd00072012-06-08 19:17:28 -0700494
495This will trigger jobs each time a new patchset (or change) is
496uploaded to Gerrit, and report +/-1 values to Gerrit in the
497``verified`` review category. ::
498
499 - name: gate
Clark Boylan00635dc2012-09-19 14:03:08 -0700500 manager: DependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700501 trigger:
502 - event: comment-added
503 approval:
504 - approved: 1
505 success:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000506 gerrit:
507 verified: 2
508 submit: true
James E. Blaircdd00072012-06-08 19:17:28 -0700509 failure:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000510 gerrit:
511 verified: -2
James E. Blaircdd00072012-06-08 19:17:28 -0700512
513This will trigger jobs whenever a reviewer leaves a vote of ``1`` in the
514``approved`` review category in Gerrit (a non-standard category).
515Changes will be tested in such a way as to guarantee that they will be
516merged exactly as tested, though that will happen in parallel by
517creating a virtual queue of dependent changes and performing
518speculative execution of jobs. ::
519
520 - name: post
Clark Boylan00635dc2012-09-19 14:03:08 -0700521 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700522 trigger:
523 - event: ref-updated
524 ref: ^(?!refs/).*$
525
526This will trigger jobs whenever a change is merged to a named branch
527(e.g., ``master``). No output will be reported to Gerrit. This is
528useful for side effects such as creating per-commit tarballs. ::
529
530 - name: silent
Clark Boylan00635dc2012-09-19 14:03:08 -0700531 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700532 trigger:
533 - event: patchset-created
534
535This also triggers jobs when changes are uploaded to Gerrit, but no
536results are reported to Gerrit. This is useful for jobs that are in
Antoine Mussoce333842012-10-16 14:42:35 +0200537development and not yet ready to be presented to developers. ::
538
539 pipelines:
540 - name: post-merge
541 manager: IndependentPipelineManager
542 trigger:
543 - event: change-merged
544 success:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000545 gerrit:
546 force-message: True
Antoine Mussoce333842012-10-16 14:42:35 +0200547 failure:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000548 gerrit:
549 force-message: True
Antoine Mussoce333842012-10-16 14:42:35 +0200550
551The ``change-merged`` events happen when a change has been merged in the git
552repository. The change is thus closed and Gerrit will not accept modifications
553to the review scoring such as ``code-review`` or ``verified``. By using the
554``force-message: True`` parameter, Zuul will pass ``--force-message`` to the
555``gerrit review`` command, thus making sure the message is actually
556sent back to Gerrit regardless of approval scores.
557That kind of pipeline is nice to run regression or performance tests.
558
559.. note::
560 The ``change-merged`` event does not include the commit sha1 which can be
561 hazardous, it would let you report back to Gerrit though. If you were to
Michael Prokop526926a2013-10-24 16:16:57 +0200562 build a tarball for a specific commit, you should consider instead using
Łukasz Jernaś048acb42014-03-02 18:49:41 +0100563 the ``ref-updated`` event which does include the commit sha1 (but lacks the
Antoine Mussoce333842012-10-16 14:42:35 +0200564 Gerrit change number).
James E. Blaircdd00072012-06-08 19:17:28 -0700565
566Jobs
567""""
568
569The jobs section is optional, and can be used to set attributes of
570jobs that are independent of their association with a project. For
571example, if a job should return a customized message on failure, that
572may be specified here. Otherwise, Zuul does not need to be told about
573each job as it builds a list from the project specification.
574
575**name**
576 The name of the job. This field is treated as a regular expression
577 and will be applied to each job that matches.
578
James E. Blaire5a847f2012-07-10 15:29:14 -0700579**failure-message (optional)**
580 The message that should be reported to Gerrit if the job fails.
James E. Blaircdd00072012-06-08 19:17:28 -0700581
James E. Blaire5a847f2012-07-10 15:29:14 -0700582**success-message (optional)**
583 The message that should be reported to Gerrit if the job fails.
James E. Blaircdd00072012-06-08 19:17:28 -0700584
James E. Blair6aea36d2012-12-17 13:03:24 -0800585**failure-pattern (optional)**
586 The URL that should be reported to Gerrit if the job fails.
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700587 Defaults to the build URL or the url_pattern configured in
James E. Blair6aea36d2012-12-17 13:03:24 -0800588 zuul.conf. May be supplied as a string pattern with substitutions
589 as described in url_pattern in :ref:`zuulconf`.
590
591**success-pattern (optional)**
592 The URL that should be reported to Gerrit if the job succeeds.
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700593 Defaults to the build URL or the url_pattern configured in
James E. Blair6aea36d2012-12-17 13:03:24 -0800594 zuul.conf. May be supplied as a string pattern with substitutions
595 as described in url_pattern in :ref:`zuulconf`.
596
James E. Blair222d4982012-07-16 09:31:19 -0700597**hold-following-changes (optional)**
598 This is a boolean that indicates that changes that follow this
Clark Boylan00635dc2012-09-19 14:03:08 -0700599 change in a dependent change pipeline should wait until this job
James E. Blair222d4982012-07-16 09:31:19 -0700600 succeeds before launching. If this is applied to a very short job
601 that can predict whether longer jobs will fail early, this can be
602 used to reduce the number of jobs that Zuul will launch and
603 ultimately have to cancel. In that case, a small amount of
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400604 parallelization of jobs is traded for more efficient use of testing
James E. Blair222d4982012-07-16 09:31:19 -0700605 resources. On the other hand, to apply this to a long running job
606 would largely defeat the parallelization of dependent change testing
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400607 that is the main feature of Zuul. Default: ``false``.
James E. Blair222d4982012-07-16 09:31:19 -0700608
James E. Blaire5a847f2012-07-10 15:29:14 -0700609**branch (optional)**
James E. Blaircdd00072012-06-08 19:17:28 -0700610 This job should only be run on matching branches. This field is
611 treated as a regular expression and multiple branches may be
612 listed.
613
James E. Blair70c71582013-03-06 08:50:50 -0800614**files (optional)**
615 This job should only be run if at least one of the files involved in
616 the change (added, deleted, or modified) matches at least one of the
617 file patterns listed here. This field is treated as a regular
618 expression and multiple expressions may be listed.
619
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400620**voting (optional)**
621 Boolean value (``true`` or ``false``) that indicates whatever
622 a job is voting or not. Default: ``true``.
623
James E. Blaire5a847f2012-07-10 15:29:14 -0700624**parameter-function (optional)**
625 Specifies a function that should be applied to the parameters before
626 the job is launched. The function should be defined in a python file
627 included with the :ref:`includes` directive. The function
628 should have the following signature:
629
James E. Blaird0470972013-07-29 10:05:43 -0700630 .. function:: parameters(item, job, parameters)
James E. Blaire5a847f2012-07-10 15:29:14 -0700631
632 Manipulate the parameters passed to a job before a build is
633 launched. The ``parameters`` dictionary will already contain the
634 standard Zuul job parameters, and is expected to be modified
635 in-place.
636
James E. Blaird78576a2013-07-09 10:39:17 -0700637 :param item: the current queue item
638 :type item: zuul.model.QueueItem
James E. Blaird0470972013-07-29 10:05:43 -0700639 :param job: the job about to be run
640 :type job: zuul.model.Job
James E. Blaire5a847f2012-07-10 15:29:14 -0700641 :param parameters: parameters to be passed to the job
642 :type parameters: dict
643
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700644 If the parameter **ZUUL_NODE** is set by this function, then it will
645 be used to specify on what node (or class of node) the job should be
646 run.
647
James E. Blaircdd00072012-06-08 19:17:28 -0700648Here is an example of setting the failure message for jobs that check
649whether a change merges cleanly::
650
651 - name: ^.*-merge$
652 failure-message: This change was unable to be automatically merged
653 with the current state of the repository. Please rebase your
654 change and upload a new patchset.
655
656Projects
657""""""""
658
Clark Boylan00635dc2012-09-19 14:03:08 -0700659The projects section indicates what jobs should be run in each pipeline
James E. Blaircdd00072012-06-08 19:17:28 -0700660for events associated with each project. It contains a list of
661projects. Here is an example::
662
663 - name: example/project
664 check:
665 - project-merge:
666 - project-unittest
Clark Boylan00635dc2012-09-19 14:03:08 -0700667 - project-pep8
668 - project-pyflakes
James E. Blaircdd00072012-06-08 19:17:28 -0700669 gate:
670 - project-merge:
671 - project-unittest
Clark Boylan00635dc2012-09-19 14:03:08 -0700672 - project-pep8
673 - project-pyflakes
James E. Blaircdd00072012-06-08 19:17:28 -0700674 post:
675 - project-publish
676
677**name**
678 The name of the project (as known by Gerrit).
679
James E. Blair19deff22013-08-25 13:17:35 -0700680**merge-mode (optional)**
681 An optional value that indicates what strategy should be used to
682 merge changes to this project. Supported values are:
683
684 ** merge-resolve **
685 Equivalent to 'git merge -s resolve'. This corresponds closely to
686 what Gerrit performs (using JGit) for a project if the "Merge if
687 necessary" merge mode is selected and "Automatically resolve
688 conflicts" is checked. This is the default.
689
690 ** merge **
691 Equivalent to 'git merge'.
692
693 ** cherry-pick **
694 Equivalent to 'git cherry-pick'.
695
Clark Boylan00635dc2012-09-19 14:03:08 -0700696This is followed by a section for each of the pipelines defined above.
697Pipelines may be omitted if no jobs should run for this project in a
698given pipeline. Within the pipeline section, the jobs that should be
James E. Blaircdd00072012-06-08 19:17:28 -0700699executed are listed. If a job is entered as a dictionary key, then
700jobs contained within that key are only executed if the key job
701succeeds. In the above example, project-unittest, project-pep8, and
702project-pyflakes are only executed if project-merge succeeds. This
703can help avoid running unnecessary jobs.
704
James E. Blair18c64442014-03-18 10:14:45 -0700705The special job named ``noop`` is internal to Zuul and will always
706return ``SUCCESS`` immediately. This can be useful if you require
707that all changes be processed by a pipeline but a project has no jobs
708that can be run on it.
709
Paul Belangerffef9e42013-02-11 22:15:18 -0500710.. 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. Blaircdd00072012-06-08 19:17:28 -0700711
Antoine Musso80edd5a2013-02-13 15:37:53 +0100712Project Templates
713"""""""""""""""""
714
Michael Prokop526926a2013-10-24 16:16:57 +0200715Whenever you have lot of similar projects (such as plugins for a project) you
Antoine Musso80edd5a2013-02-13 15:37:53 +0100716will most probably want to use the same pipeline configurations. The
717project templates let you define pipelines and job name templates to trigger.
718One can then just apply the template on its project which make it easier to
Michael Prokop526926a2013-10-24 16:16:57 +0200719update several similar projects. As an example::
Antoine Musso80edd5a2013-02-13 15:37:53 +0100720
721 project-templates:
722 # Name of the template
723 - name: plugin-triggering
724 # Definition of pipelines just like for a `project`
725 check:
726 - '{jobprefix}-merge':
727 - '{jobprefix}-pep8'
728 - '{jobprefix}-pyflakes'
729 gate:
730 - '{jobprefix}-merge':
731 - '{jobprefix}-unittest'
732 - '{jobprefix}-pep8'
733 - '{jobprefix}-pyflakes'
734
735In your projects definition, you will then apply the template using the template
736key::
737
738 projects:
739 - name: plugin/foobar
740 template:
741 - name: plugin-triggering
742 jobprefix: plugin-foobar
743
James E. Blairaea6cf62013-12-16 15:38:12 -0800744You can pass several parameters to a template. A ``parameter`` value
745will be used for expansion of ``{parameter}`` in the template
746strings. The parameter ``name`` will be automatically provided and
747will contain the short name of the project, that is the portion of the
748project name after the last ``/`` character.
James E. Blaircdd00072012-06-08 19:17:28 -0700749
James E. Blair3e98c022013-12-16 15:25:38 -0800750Multiple templates can be combined in a project, and the jobs from all
751of those templates will be added to the project. Individual jobs may
752also be added::
753
754 projects:
755 - name: plugin/foobar
756 template:
757 - name: plugin-triggering
758 jobprefix: plugin-foobar
759 - name: plugin-extras
760 jobprefix: plugin-foobar
761 check:
762 - foobar-extra-special-job
763
764The order of the jobs listed in the project (which only affects the
765order of jobs listed on the report) will be the jobs from each
766template in the order listed, followed by any jobs individually listed
767for the project.
768
769Note that if multiple templates are used for a project and one
770template specifies a job that is also specified in another template,
771or specified in the project itself, those jobs will be duplicated in
772the resulting project configuration.
773
James E. Blaircdd00072012-06-08 19:17:28 -0700774logging.conf
775~~~~~~~~~~~~
776This file is optional. If provided, it should be a standard
777:mod:`logging.config` module configuration file. If not present, Zuul will
778output all log messages of DEBUG level or higher to the console.
779
780Starting Zuul
781-------------
782
783To start Zuul, run **zuul-server**::
784
Antoine Mussob3aa8282013-04-19 15:16:59 +0200785 usage: zuul-server [-h] [-c CONFIG] [-l LAYOUT] [-d] [-t] [--version]
James E. Blaircdd00072012-06-08 19:17:28 -0700786
787 Project gating system.
788
789 optional arguments:
790 -h, --help show this help message and exit
791 -c CONFIG specify the config file
Antoine Mussob3aa8282013-04-19 15:16:59 +0200792 -l LAYOUT specify the layout file
James E. Blaircdd00072012-06-08 19:17:28 -0700793 -d do not run as a daemon
Antoine Mussob3aa8282013-04-19 15:16:59 +0200794 -t validate layout file syntax
795 --version show zuul version
James E. Blaircdd00072012-06-08 19:17:28 -0700796
797You may want to use the ``-d`` argument while you are initially setting
798up Zuul so you can detect any configuration errors quickly. Under
799normal operation, omit ``-d`` and let Zuul run as a daemon.
800
801If you send signal 1 (SIGHUP) to the zuul-server process, Zuul will
802stop executing new jobs, wait until all executing jobs are finished,
803reload its configuration, and resume. Any values in any of the
804configuration files may be changed, except the location of Zuul's PID
805file (a change to that will be ignored until Zuul is restarted).
Clark Boylanf231fa22013-02-08 12:28:53 -0800806
807If you send a SIGUSR1 to the zuul-server process, Zuul will stop
808executing new jobs, wait until all executing jobs are finished,
809then exit. While waiting to exit Zuul will queue Gerrit events and
810save these events prior to exiting. When Zuul starts again it will
811read these saved events and act on them.
Jeremy Stanley93e05f42013-03-08 17:29:17 +0000812
Michael Prokop526926a2013-10-24 16:16:57 +0200813If you need to abort Zuul and intend to manually requeue changes for
Jeremy Stanley93e05f42013-03-08 17:29:17 +0000814jobs which were running in its pipelines, prior to terminating you can
815use the zuul-changes.py tool script to simplify the process. For
816example, this would give you a list of Gerrit commands to reverify or
817recheck changes for the gate and check pipelines respectively::
818
819 ./tools/zuul-changes.py --review-host=review.openstack.org \
820 http://zuul.openstack.org/ gate 'reverify no bug'
821 ./tools/zuul-changes.py --review-host=review.openstack.org \
822 http://zuul.openstack.org/ check 'recheck no bug'
Clark Boylanfba9b242013-08-20 10:11:17 -0700823
824If you send a SIGUSR2 to the zuul-server process, Zuul will dump a stack
825trace for each running thread into its debug log. This is useful for
826tracking down deadlock or otherwise slow threads.