blob: 4b61507222001fa1353f26fe7e5481ad22304d50 [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
13 other config files
James E. Blaircdd00072012-06-08 19:17:28 -070014**layout.yaml**
Clark Boylan00635dc2012-09-19 14:03:08 -070015 Project and pipeline configuration -- what Zuul does
James E. Blaircdd00072012-06-08 19:17:28 -070016**logging.conf**
17 Python logging config
18
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**
49 Port on which the Gearman server is listening
50 ``port=4730``
Clark Boylan9b670902012-09-28 13:47:56 -070051
52gerrit
53""""""
54
55**server**
56 FQDN of Gerrit server.
57 ``server=review.example.com``
58
Antoine Musso27475012012-11-26 09:53:01 +010059**baseurl**
60 Optional: path to Gerrit web interface. Defaults to ``https://<value
61 of server>/``. ``baseurl=https://review.example.com/review_site/``
62
Clark Boylan9b670902012-09-28 13:47:56 -070063**user**
64 User name to use when logging into above server via ssh.
James E. Blair1f4c2bb2013-04-26 08:40:46 -070065 ``user=zuul``
Clark Boylan9b670902012-09-28 13:47:56 -070066
67**sshkey**
68 Path to SSH key to use when logging into above server.
James E. Blair1f4c2bb2013-04-26 08:40:46 -070069 ``sshkey=/home/zuul/.ssh/id_rsa``
Clark Boylan9b670902012-09-28 13:47:56 -070070
71zuul
72""""
73
74**layout_config**
75 Path to layout config file.
76 ``layout_config=/etc/zuul/layout.yaml``
77
78**log_config**
79 Path to log config file.
80 ``log_config=/etc/zuul/logging.yaml``
81
82**pidfile**
83 Path to PID lock file.
84 ``pidfile=/var/run/zuul/zuul.pid``
85
86**state_dir**
87 Path to directory that Zuul should save state to.
88 ``state_dir=/var/lib/zuul``
89
90**git_dir**
91 Directory that Zuul should clone local git repositories to.
92 ``git_dir=/var/lib/zuul/git``
93
94**push_change_refs**
95 Boolean value (``true`` or ``false``) that determines if Zuul should
96 push change refs to the git origin server for the git repositories in
97 git_dir.
98 ``push_change_refs=true``
99
James E. Blair0ac6c012013-04-26 09:04:23 -0700100**report_times**
101 Boolean value (``true`` or ``false``) that determines if Zuul should
102 include elapsed times for each job in the textual report.
103 ``report_times=true``
104
Clark Boylan9b670902012-09-28 13:47:56 -0700105**status_url**
106 URL that will be posted in Zuul comments made to Gerrit changes when
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700107 starting jobs for a change.
108 ``status_url=https://zuul.example.com/status``
Clark Boylan9b670902012-09-28 13:47:56 -0700109
110**url_pattern**
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700111 If you are storing build logs external to the system that originally
112 ran jobs and wish to link to those logs when Zuul makes comments on
113 Gerrit changes for completed jobs this setting configures what the
114 URLs for those links should be.
Clark Boylan9b670902012-09-28 13:47:56 -0700115 ``http://logs.example.com/{change.number}/{change.patchset}/{pipeline.name}/{job.name}/{build.number}``
116
James E. Blaircdd00072012-06-08 19:17:28 -0700117layout.yaml
118~~~~~~~~~~~
119
Clark Boylan00635dc2012-09-19 14:03:08 -0700120This is the main configuration file for Zuul, where all of the pipelines
James E. Blaircdd00072012-06-08 19:17:28 -0700121and projects are defined, what tests should be run, and what actions
Clark Boylan00635dc2012-09-19 14:03:08 -0700122Zuul should perform. There are three sections: pipelines, jobs, and
James E. Blaircdd00072012-06-08 19:17:28 -0700123projects.
124
James E. Blaire5a847f2012-07-10 15:29:14 -0700125.. _includes:
126
127Includes
128""""""""
129
130Custom functions to be used in Zuul's configuration may be provided
131using the ``includes`` directive. It accepts a list of files to
132include, and currently supports one type of inclusion, a python file::
133
134 includes:
135 - python-file: local_functions.py
136
137**python-file**
138 The path to a python file. The file will be loaded and objects that
139 it defines will be placed in a special environment which can be
140 referenced in the Zuul configuration. Currently only the
141 parameter-function attribute of a Job uses this feature.
142
Clark Boylan00635dc2012-09-19 14:03:08 -0700143Pipelines
144"""""""""
James E. Blaircdd00072012-06-08 19:17:28 -0700145
Clark Boylan00635dc2012-09-19 14:03:08 -0700146Zuul can have any number of independent pipelines. Whenever a matching
147Gerrit event is found for a pipeline, that event is added to the
148pipeline, and the jobs specified for that pipeline are run. When all
149jobs specified for the pipeline that were triggered by an event are
150completed, Zuul reports back to Gerrit the results.
James E. Blaircdd00072012-06-08 19:17:28 -0700151
Clark Boylan00635dc2012-09-19 14:03:08 -0700152There are no pre-defined pipelines in Zuul, rather you can define
153whatever pipelines you need in the layout file. This is a very flexible
154system that can accommodate many kinds of workflows.
James E. Blaircdd00072012-06-08 19:17:28 -0700155
Clark Boylan00635dc2012-09-19 14:03:08 -0700156Here is a quick example of a pipeline definition followed by an
James E. Blaircdd00072012-06-08 19:17:28 -0700157explanation of each of the parameters::
158
159 - name: check
Clark Boylan00635dc2012-09-19 14:03:08 -0700160 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700161 trigger:
162 - event: patchset-created
163 success:
164 verified: 1
165 failure:
166 verified: -1
167
168**name**
169 This is used later in the project definition to indicate what jobs
Clark Boylan00635dc2012-09-19 14:03:08 -0700170 should be run for events in the pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700171
James E. Blair8dbd56a2012-12-22 10:55:10 -0800172**description**
173 This is an optional field that may be used to provide a textual
174 description of the pipeline.
175
James E. Blair56370192013-01-14 15:47:28 -0800176**success-message**
177 An optional field that supplies the introductory text in message
178 reported back to Gerrit when all the voting builds are successful.
179 Defaults to "Build successful."
180
181**failure-message**
182 An optional field that supplies the introductory text in message
183 reported back to Gerrit when at least one voting build fails.
184 Defaults to "Build failed."
185
James E. Blaircdd00072012-06-08 19:17:28 -0700186**manager**
Clark Boylan00635dc2012-09-19 14:03:08 -0700187 There are currently two schemes for managing pipelines:
James E. Blaircdd00072012-06-08 19:17:28 -0700188
Clark Boylan00635dc2012-09-19 14:03:08 -0700189 *IndependentPipelineManager*
190 Every event in this pipeline should be treated as independent of
191 other events in the pipeline. This is appropriate when the order of
192 events in the pipeline doesn't matter because the results of the
193 actions this pipeline performs can not affect other events in the
194 pipeline. For example, when a change is first uploaded for review,
James E. Blaircdd00072012-06-08 19:17:28 -0700195 you may want to run tests on that change to provide early feedback
196 to reviewers. At the end of the tests, the change is not going to
197 be merged, so it is safe to run these tests in parallel without
Clark Boylan00635dc2012-09-19 14:03:08 -0700198 regard to any other changes in the pipeline. They are independent.
James E. Blaircdd00072012-06-08 19:17:28 -0700199
Clark Boylan00635dc2012-09-19 14:03:08 -0700200 Another type of pipeline that is independent is a post-merge
201 pipeline. In that case, the changes have already merged, so the
202 results can not affect any other events in the pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700203
Clark Boylan00635dc2012-09-19 14:03:08 -0700204 *DependentPipelineManager*
205 The dependent pipeline manager is designed for gating. It ensures
James E. Blaircdd00072012-06-08 19:17:28 -0700206 that every change is tested exactly as it is going to be merged
207 into the repository. An ideal gating system would test one change
208 at a time, applied to the tip of the repository, and only if that
209 change passed tests would it be merged. Then the next change in
210 line would be tested the same way. In order to achieve parallel
Clark Boylan00635dc2012-09-19 14:03:08 -0700211 testing of changes, the dependent pipeline manager performs
James E. Blaircdd00072012-06-08 19:17:28 -0700212 speculative execution on changes. It orders changes based on
Clark Boylan00635dc2012-09-19 14:03:08 -0700213 their entry into the pipeline. It begins testing all changes in
214 parallel, assuming that each change ahead in the pipeline will pass
James E. Blaircdd00072012-06-08 19:17:28 -0700215 its tests. If they all succeed, all the changes can be tested and
Clark Boylan00635dc2012-09-19 14:03:08 -0700216 merged in parallel. If a change near the front of the pipeline
217 fails its tests, each change behind it ignores whatever tests have
218 been completed and are tested again without the change in front.
219 This way gate tests may run in parallel but still be tested
220 correctly, exactly as they will appear in the repository when
221 merged.
James E. Blaircdd00072012-06-08 19:17:28 -0700222
Clark Boylan00635dc2012-09-19 14:03:08 -0700223 One important characteristic of the DependentPipelineManager is that
James E. Blaircdd00072012-06-08 19:17:28 -0700224 it analyzes the jobs that are triggered by different projects, and
225 if those projects have jobs in common, it treats those projects as
226 related, and they share a single virtual queue of changes. Thus,
227 if there is a job that performs integration testing on two
228 projects, those two projects will automatically share a virtual
229 change queue. If a third project does not invoke that job, it
Clark Boylan00635dc2012-09-19 14:03:08 -0700230 will be part of a separate virtual change queue, and changes to
231 it will not depend on changes to the first two jobs.
James E. Blaircdd00072012-06-08 19:17:28 -0700232
233 For more detail on the theory and operation of Zuul's
Clark Boylan00635dc2012-09-19 14:03:08 -0700234 DependentPipelineManager, see: :doc:`gating`.
James E. Blaircdd00072012-06-08 19:17:28 -0700235
236**trigger**
Clark Boylan00635dc2012-09-19 14:03:08 -0700237 This describes what Gerrit events should be placed in the pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700238 Triggers are not exclusive -- matching events may be placed in
Clark Boylan00635dc2012-09-19 14:03:08 -0700239 multiple pipelines, and they will behave independently in each of the
240 pipelines they match. Multiple triggers may be listed. Further
James E. Blaircdd00072012-06-08 19:17:28 -0700241 parameters describe the kind of events that match:
242
243 *event*
244 The event name from gerrit. Examples: ``patchset-created``,
245 ``comment-added``, ``ref-updated``. This field is treated as a
246 regular expression.
247
248 *branch*
249 The branch associated with the event. Example: ``master``. This
250 field is treated as a regular expression, and multiple branches may
251 be listed.
252
253 *ref*
254 On ref-updated events, the branch parameter is not used, instead the
255 ref is provided. Currently Gerrit has the somewhat idiosyncratic
256 behavior of specifying bare refs for branch names (e.g., ``master``),
257 but full ref names for other kinds of refs (e.g., ``refs/tags/foo``).
258 Zuul matches what you put here exactly against what Gerrit
259 provides. This field is treated as a regular expression, and
260 multiple refs may be listed.
261
262 *approval*
263 This is only used for ``comment-added`` events. It only matches if
264 the event has a matching approval associated with it. Example:
265 ``code-review: 2`` matches a ``+2`` vote on the code review category.
266 Multiple approvals may be listed.
267
Antoine Mussob4e809e2012-12-06 16:58:06 +0100268 *email_filter*
269 This is used for any event. It takes a regex applied on the performer
Antoine Musso5f110422012-12-18 23:22:13 +0100270 email, i.e Gerrit account email address. If you want to specify
271 several email filters, you must use a YAML list. Make sure to use non
272 greedy matchers and to escapes dots!
273 Example: ``email_filter: ^.*?@example\.org$``.
Antoine Mussob4e809e2012-12-06 16:58:06 +0100274
Clark Boylanb9bcb402012-06-29 17:44:05 -0700275 *comment_filter*
276 This is only used for ``comment-added`` events. It accepts a list of
277 regexes that are searched for in the comment string. If any of these
278 regexes matches a portion of the comment string the trigger is
279 matched. ``comment_filter: retrigger`` will match when comments
280 containing 'retrigger' somewhere in the comment text are added to a
281 change.
282
James E. Blair2fa50962013-01-30 21:50:41 -0800283**dequeue-on-new-patchset**
284 Normally, if a new patchset is uploaded to a change that is in a
285 pipeline, the existing entry in the pipeline will be removed (with
286 jobs canceled and any dependent changes that can no longer merge as
287 well. To suppress this behavior (and allow jobs to continue
288 running), set this to ``false``. Default: ``true``.
289
James E. Blaircdd00072012-06-08 19:17:28 -0700290**success**
291 Describes what Zuul should do if all the jobs complete successfully.
292 This section is optional; if it is omitted, Zuul will run jobs and
293 do nothing on success; it will not even report a message to Gerrit.
294 If the section is present, it will leave a message on the Gerrit
295 review. Each additional argument is assumed to be an argument to
296 ``gerrit review``, with the boolean value of ``true`` simply
297 indicating that the argument should be present without following it
298 with a value. For example, ``verified: 1`` becomes ``gerrit
299 review --verified 1`` and ``submit: true`` becomes ``gerrit review
300 --submit``.
301
302**failure**
303 Uses the same syntax as **success**, but describes what Zuul should
304 do if at least one job fails.
James E. Blairdc253862012-06-13 17:12:42 -0700305
306**start**
307 Uses the same syntax as **success**, but describes what Zuul should
Clark Boylan00635dc2012-09-19 14:03:08 -0700308 do when a change is added to the pipeline manager. This can be used,
James E. Blairdc253862012-06-13 17:12:42 -0700309 for example, to reset the value of the Verified review category.
James E. Blaircdd00072012-06-08 19:17:28 -0700310
Clark Boylan00635dc2012-09-19 14:03:08 -0700311Some example pipeline configurations are included in the sample layout
312file. The first is called a *check* pipeline::
James E. Blaircdd00072012-06-08 19:17:28 -0700313
314 - name: check
Clark Boylan00635dc2012-09-19 14:03:08 -0700315 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700316 trigger:
317 - event: patchset-created
318 success:
319 verified: 1
320 failure:
321 verified: -1
322
323This will trigger jobs each time a new patchset (or change) is
324uploaded to Gerrit, and report +/-1 values to Gerrit in the
325``verified`` review category. ::
326
327 - name: gate
Clark Boylan00635dc2012-09-19 14:03:08 -0700328 manager: DependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700329 trigger:
330 - event: comment-added
331 approval:
332 - approved: 1
333 success:
334 verified: 2
335 submit: true
336 failure:
337 verified: -2
338
339This will trigger jobs whenever a reviewer leaves a vote of ``1`` in the
340``approved`` review category in Gerrit (a non-standard category).
341Changes will be tested in such a way as to guarantee that they will be
342merged exactly as tested, though that will happen in parallel by
343creating a virtual queue of dependent changes and performing
344speculative execution of jobs. ::
345
346 - name: post
Clark Boylan00635dc2012-09-19 14:03:08 -0700347 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700348 trigger:
349 - event: ref-updated
350 ref: ^(?!refs/).*$
351
352This will trigger jobs whenever a change is merged to a named branch
353(e.g., ``master``). No output will be reported to Gerrit. This is
354useful for side effects such as creating per-commit tarballs. ::
355
356 - name: silent
Clark Boylan00635dc2012-09-19 14:03:08 -0700357 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700358 trigger:
359 - event: patchset-created
360
361This also triggers jobs when changes are uploaded to Gerrit, but no
362results are reported to Gerrit. This is useful for jobs that are in
Antoine Mussoce333842012-10-16 14:42:35 +0200363development and not yet ready to be presented to developers. ::
364
365 pipelines:
366 - name: post-merge
367 manager: IndependentPipelineManager
368 trigger:
369 - event: change-merged
370 success:
371 force-message: True
372 failure:
373 force-message: True
374
375The ``change-merged`` events happen when a change has been merged in the git
376repository. The change is thus closed and Gerrit will not accept modifications
377to the review scoring such as ``code-review`` or ``verified``. By using the
378``force-message: True`` parameter, Zuul will pass ``--force-message`` to the
379``gerrit review`` command, thus making sure the message is actually
380sent back to Gerrit regardless of approval scores.
381That kind of pipeline is nice to run regression or performance tests.
382
383.. note::
384 The ``change-merged`` event does not include the commit sha1 which can be
385 hazardous, it would let you report back to Gerrit though. If you were to
386 build a tarball for a specific commit, you should consider insteading using
387 the ``ref-updated`` event which does include the commit sha1 (but lack the
388 Gerrit change number).
James E. Blaircdd00072012-06-08 19:17:28 -0700389
390Jobs
391""""
392
393The jobs section is optional, and can be used to set attributes of
394jobs that are independent of their association with a project. For
395example, if a job should return a customized message on failure, that
396may be specified here. Otherwise, Zuul does not need to be told about
397each job as it builds a list from the project specification.
398
399**name**
400 The name of the job. This field is treated as a regular expression
401 and will be applied to each job that matches.
402
James E. Blaire5a847f2012-07-10 15:29:14 -0700403**failure-message (optional)**
404 The message that should be reported to Gerrit if the job fails.
James E. Blaircdd00072012-06-08 19:17:28 -0700405
James E. Blaire5a847f2012-07-10 15:29:14 -0700406**success-message (optional)**
407 The message that should be reported to Gerrit if the job fails.
James E. Blaircdd00072012-06-08 19:17:28 -0700408
James E. Blair6aea36d2012-12-17 13:03:24 -0800409**failure-pattern (optional)**
410 The URL that should be reported to Gerrit if the job fails.
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700411 Defaults to the build URL or the url_pattern configured in
James E. Blair6aea36d2012-12-17 13:03:24 -0800412 zuul.conf. May be supplied as a string pattern with substitutions
413 as described in url_pattern in :ref:`zuulconf`.
414
415**success-pattern (optional)**
416 The URL that should be reported to Gerrit if the job succeeds.
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700417 Defaults to the build URL or the url_pattern configured in
James E. Blair6aea36d2012-12-17 13:03:24 -0800418 zuul.conf. May be supplied as a string pattern with substitutions
419 as described in url_pattern in :ref:`zuulconf`.
420
James E. Blair222d4982012-07-16 09:31:19 -0700421**hold-following-changes (optional)**
422 This is a boolean that indicates that changes that follow this
Clark Boylan00635dc2012-09-19 14:03:08 -0700423 change in a dependent change pipeline should wait until this job
James E. Blair222d4982012-07-16 09:31:19 -0700424 succeeds before launching. If this is applied to a very short job
425 that can predict whether longer jobs will fail early, this can be
426 used to reduce the number of jobs that Zuul will launch and
427 ultimately have to cancel. In that case, a small amount of
428 paralellization of jobs is traded for more efficient use of testing
429 resources. On the other hand, to apply this to a long running job
430 would largely defeat the parallelization of dependent change testing
431 that is the main feature of Zuul. The default is False.
432
James E. Blaire5a847f2012-07-10 15:29:14 -0700433**branch (optional)**
James E. Blaircdd00072012-06-08 19:17:28 -0700434 This job should only be run on matching branches. This field is
435 treated as a regular expression and multiple branches may be
436 listed.
437
James E. Blair70c71582013-03-06 08:50:50 -0800438**files (optional)**
439 This job should only be run if at least one of the files involved in
440 the change (added, deleted, or modified) matches at least one of the
441 file patterns listed here. This field is treated as a regular
442 expression and multiple expressions may be listed.
443
James E. Blaire5a847f2012-07-10 15:29:14 -0700444**parameter-function (optional)**
445 Specifies a function that should be applied to the parameters before
446 the job is launched. The function should be defined in a python file
447 included with the :ref:`includes` directive. The function
448 should have the following signature:
449
450 .. function:: parameters(change, parameters)
451
452 Manipulate the parameters passed to a job before a build is
453 launched. The ``parameters`` dictionary will already contain the
454 standard Zuul job parameters, and is expected to be modified
455 in-place.
456
457 :param change: the current change
458 :type change: zuul.model.Change
459 :param parameters: parameters to be passed to the job
460 :type parameters: dict
461
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700462 If the parameter **ZUUL_NODE** is set by this function, then it will
463 be used to specify on what node (or class of node) the job should be
464 run.
465
James E. Blaircdd00072012-06-08 19:17:28 -0700466Here is an example of setting the failure message for jobs that check
467whether a change merges cleanly::
468
469 - name: ^.*-merge$
470 failure-message: This change was unable to be automatically merged
471 with the current state of the repository. Please rebase your
472 change and upload a new patchset.
473
474Projects
475""""""""
476
Clark Boylan00635dc2012-09-19 14:03:08 -0700477The projects section indicates what jobs should be run in each pipeline
James E. Blaircdd00072012-06-08 19:17:28 -0700478for events associated with each project. It contains a list of
479projects. Here is an example::
480
481 - name: example/project
482 check:
483 - project-merge:
484 - project-unittest
Clark Boylan00635dc2012-09-19 14:03:08 -0700485 - project-pep8
486 - project-pyflakes
James E. Blaircdd00072012-06-08 19:17:28 -0700487 gate:
488 - project-merge:
489 - project-unittest
Clark Boylan00635dc2012-09-19 14:03:08 -0700490 - project-pep8
491 - project-pyflakes
James E. Blaircdd00072012-06-08 19:17:28 -0700492 post:
493 - project-publish
494
495**name**
496 The name of the project (as known by Gerrit).
497
Clark Boylan00635dc2012-09-19 14:03:08 -0700498This is followed by a section for each of the pipelines defined above.
499Pipelines may be omitted if no jobs should run for this project in a
500given pipeline. Within the pipeline section, the jobs that should be
James E. Blaircdd00072012-06-08 19:17:28 -0700501executed are listed. If a job is entered as a dictionary key, then
502jobs contained within that key are only executed if the key job
503succeeds. In the above example, project-unittest, project-pep8, and
504project-pyflakes are only executed if project-merge succeeds. This
505can help avoid running unnecessary jobs.
506
Paul Belangerffef9e42013-02-11 22:15:18 -0500507.. 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 -0700508
Antoine Musso80edd5a2013-02-13 15:37:53 +0100509Project Templates
510"""""""""""""""""
511
512Whenever you have lot of similiar projects (such as plugins for a project) you
513will most probably want to use the same pipeline configurations. The
514project templates let you define pipelines and job name templates to trigger.
515One can then just apply the template on its project which make it easier to
516update several similiar projects. As an example::
517
518 project-templates:
519 # Name of the template
520 - name: plugin-triggering
521 # Definition of pipelines just like for a `project`
522 check:
523 - '{jobprefix}-merge':
524 - '{jobprefix}-pep8'
525 - '{jobprefix}-pyflakes'
526 gate:
527 - '{jobprefix}-merge':
528 - '{jobprefix}-unittest'
529 - '{jobprefix}-pep8'
530 - '{jobprefix}-pyflakes'
531
532In your projects definition, you will then apply the template using the template
533key::
534
535 projects:
536 - name: plugin/foobar
537 template:
538 - name: plugin-triggering
539 jobprefix: plugin-foobar
540
541You can pass several parameters to a template. A ``parameter`` value will be
542used for expansion of ``{parameter}`` in the template strings.
James E. Blaircdd00072012-06-08 19:17:28 -0700543
544logging.conf
545~~~~~~~~~~~~
546This file is optional. If provided, it should be a standard
547:mod:`logging.config` module configuration file. If not present, Zuul will
548output all log messages of DEBUG level or higher to the console.
549
550Starting Zuul
551-------------
552
553To start Zuul, run **zuul-server**::
554
Antoine Mussob3aa8282013-04-19 15:16:59 +0200555 usage: zuul-server [-h] [-c CONFIG] [-l LAYOUT] [-d] [-t] [--version]
James E. Blaircdd00072012-06-08 19:17:28 -0700556
557 Project gating system.
558
559 optional arguments:
560 -h, --help show this help message and exit
561 -c CONFIG specify the config file
Antoine Mussob3aa8282013-04-19 15:16:59 +0200562 -l LAYOUT specify the layout file
James E. Blaircdd00072012-06-08 19:17:28 -0700563 -d do not run as a daemon
Antoine Mussob3aa8282013-04-19 15:16:59 +0200564 -t validate layout file syntax
565 --version show zuul version
James E. Blaircdd00072012-06-08 19:17:28 -0700566
567You may want to use the ``-d`` argument while you are initially setting
568up Zuul so you can detect any configuration errors quickly. Under
569normal operation, omit ``-d`` and let Zuul run as a daemon.
570
571If you send signal 1 (SIGHUP) to the zuul-server process, Zuul will
572stop executing new jobs, wait until all executing jobs are finished,
573reload its configuration, and resume. Any values in any of the
574configuration files may be changed, except the location of Zuul's PID
575file (a change to that will be ignored until Zuul is restarted).
Clark Boylanf231fa22013-02-08 12:28:53 -0800576
577If you send a SIGUSR1 to the zuul-server process, Zuul will stop
578executing new jobs, wait until all executing jobs are finished,
579then exit. While waiting to exit Zuul will queue Gerrit events and
580save these events prior to exiting. When Zuul starts again it will
581read these saved events and act on them.
Jeremy Stanley93e05f42013-03-08 17:29:17 +0000582
583If you need to abort zuul and intend to manually requeue changes for
584jobs which were running in its pipelines, prior to terminating you can
585use the zuul-changes.py tool script to simplify the process. For
586example, this would give you a list of Gerrit commands to reverify or
587recheck changes for the gate and check pipelines respectively::
588
589 ./tools/zuul-changes.py --review-host=review.openstack.org \
590 http://zuul.openstack.org/ gate 'reverify no bug'
591 ./tools/zuul-changes.py --review-host=review.openstack.org \
592 http://zuul.openstack.org/ check 'recheck no bug'