blob: cbcbad23785d5c3289950efec24d2d0e65b5985e [file] [log] [blame]
James E. Blaircdd00072012-06-08 19:17:28 -07001:title: Triggers
2
3Triggers
4========
5
6The process of merging a change starts with proposing a change to be
7merged. Currently Zuul only supports Gerrit as a triggering system.
8Zuul's design is modular, so alternate triggering and reporting
9systems can be supported. However, Gerrit has a particularly robust
10data model, and Zuul does make some assumptions that include that data
11model. Nonetheless, patches to support alternate systems are welcome.
12
13Gerrit
14------
15
16Zuul works with standard versions of Gerrit by invoking the ``gerrit
17stream-events`` command over an SSH connection. It also reports back
18to Gerrit using SSH.
19
20Gerrit Configuration
21~~~~~~~~~~~~~~~~~~~~
22
23Zuul will need access to a Gerrit user. Consider naming the user
24*Jenkins* so that developers see that feedback from changes is from
25Jenkins (Zuul attempts to stay out of the way of developers, most
26shouldn't even need to know it's there).
27
28Create an SSH keypair for Zuul to use if there isn't one already, and
29create a Gerrit user with that key::
30
31 cat ~/id_rsa.pub | ssh -p29418 gerrit.example.com gerrit create-account --ssh-key - --full-name Jenkins jenkins
32
33Give that user whatever permissions will be needed on the projects you
34want Zuul to gate. For instance, you may want to grant ``Verified
35+/-1`` and ``Submit`` to the user. Additional categories or values may
36be added to Gerrit. Zuul is very flexible and can take advantage of
37those.
James E. Blair172c0762012-10-02 15:35:54 -070038
39Zuul References
40~~~~~~~~~~~~~~~
41
42As the DependentPipelineManager may combine several changes together
43for testing when performing speculative execution, determining exactly
44how the workspace should be set up when running a Job can be complex.
45To alleviate this problem, Zuul performs merges itself, merging or
46cherry-picking changes as required and identifies the result with a
47Git reference of the form ``refs/zuul/<branch>/Z<random sha1>``.
48Preparing the workspace is then a simple matter of fetching that ref
49and checking it out. The parameters that provide this information are
50described in :ref:`launchers`.
51
52These references need to be made available via a Git repository that
53is available to Jenkins. You may accomplish this by either allowing
54Zuul to push the references back to Gerrit, in which case you may
55simply use the Gerrit Git repository. If you do not have access to
56the Gerrit repository, or would prefer Zuul not push its refs there,
57you may directly serve the Git repositories that Zuul uses, and
58configure Jenkins to use those. Instructions for each of these
59alternatives are in the following sections.
60
61Pushing to Gerrit
62"""""""""""""""""
63
64If you want to push Zuul refs back to Gerrit, set the following
65permissions for your project (or ``All-Projects``) in Gerrit (where
66``CI Tools`` is a group of which the user you created above is a
67member)::
68
69 [access "refs/zuul/*"]
70 create = group CI Tools
71 push = +force CI Tools
72 pushMerge = group CI Tools
73 [access "refs/for/refs/zuul/*"]
74 pushMerge = group CI Tools
75
76And set ``push_change_refs`` to ``true`` in the ``zuul`` section of
77zuul.conf.
78
79Serving Zuul Git Repos
80""""""""""""""""""""""
81
82Zuul maintains its own copies of any needed Git repositories in the
83directory specified by ``git_dir`` in the ``zuul`` section of
84zuul.conf (by default, /var/lib/zuul/git). If you want to serve
85Zuul's Git repositories in order to provide Zuul refs for Jenkins, you
86can configure Apache to do so using the following directives::
87
88 SetEnv GIT_PROJECT_ROOT /var/lib/zuul/git
89 SetEnv GIT_HTTP_EXPORT_ALL
90
91 AliasMatch ^/p/(.*/objects/[0-9a-f]{2}/[0-9a-f]{38})$ /var/lib/zuul/git/$1
92 AliasMatch ^/p/(.*/objects/pack/pack-[0-9a-f]{40}.(pack|idx))$ /var/lib/zuul/git/$1
93 ScriptAlias /p/ /usr/lib/git-core/git-http-backend/
94
95And set ``push_change_refs`` to ``false`` (the default) in the
96``zuul`` section of zuul.conf.
97
98Note that Zuul's Git repositories are not bare, which means they have
99a working tree, and are not suitable for public consumption (for
100instance, a clone will produce a repository in an unpredictable state
101depending on what the state of Zuul's repository is when the clone
102happens). They are, however, suitable for automated systems that
103respond to Zuul triggers.