Merge "Add validate-autorelease jobs for Lithium projects"
[releng/builder.git] / src / site / markdown / jenkins.md
1 The [Release Engineering project][0] consolidates the Jenkins jobs from
2 project-specific VMs to a single Jenkins server. Each OpenDaylight project
3 has a tab for their jobs on the [RelEng Jenkins server][3]. The system utilizes
4 [Jenkins Job Builder][11] \(JJB\) for the creation and management of the
5 Jenkins jobs.
6
7 Sections:
8
9 * [Jenkins Master](#jenkins_master)
10 * [Build Slaves](#build_slaves)
11 * [Creating Jenkins Jobs](#creating_jenkins_jobs)
12     * [Getting Jenkins Job Builder](#jjb)
13         * [Installing Jenkins Job Builder](#jjb_install)
14             * [Virtual Environments](#jjb_install_venv)
15             * [Installing JJB using pip](#jjb_install_pip)
16             * [Installing JJB Manually](#jjb_install_manual)
17         * [Jenkins Job Builder Docker Image](#jjb_install_docker)
18     * [Jenkins Job Templates](#jjb_templates)
19     * [Jenkins Job Basic Configuration](#jjb_basic_configuration)
20     * [Jenkins Job Maven Properties](#jjb_maven_properties)
21 * [Jenkins Sandbox](#jenkins_sandbox)
22     * [Configuration](#sandbox_config)
23     * [Manual Method](#jjb_use_manual)
24     * [Docker Method](#jjb_use_docker)
25
26 # <a name="jenkins_master">Jenkins Master</a>
27
28 The [Jenkins master server][3] is the home for all project's Jenkins jobs. All
29 maintenance and configuration of these jobs must be done via JJB through the
30 [RelEng repo][4]. Project contributors can no longer edit the Jenkins jobs
31 directly on the server.
32
33 # <a name="build_slaves">Build Slaves</a>
34
35 The Jenkins jobs are run on build slaves (executors) which are created on an
36 as-needed basis. If no idle build slaves are available a new VM is brought
37 up. This process can take up to 2 minutes. Once the build slave has finished a
38 job, it will remain online for 45 minutes before shutting down. Subsequent
39 jobs will use an idle build slave if available.
40
41 Our Jenkins master supports many types of dynamic build slaves. If you are
42 creating custom jobs then you will need to have an idea of what type of slaves
43 are available. The following are the current slave types and descriptions.
44 Slave Template Names are needed for jobs that take advantage of multiple
45 slaves as they must be specifically called out by template name instead of
46 label.
47
48 ## Adding New Components to the Slaves
49
50 If your project needs something added to one of the slaves used during build
51 and test you can help us get things added faster by doing one of the following:
52
53 * Submit a patch to RelEng/Builder for the [Jenkins spinup script][5] that
54   configures your new piece of software.
55 * Submit a patch to RelEng/Builder for the [Vagrant template's bootstrap.sh][6]
56   that configures your new piece of software.
57
58 Going the first route will be faster in the short term as we can inspect the
59 changes and make test modifications in the sandbox to verify that it works.
60
61 The second route, however, is better for the community as a whole as it will
62 allow others that utilize our Vagrant setups to replicate our systems more
63 closely. It is, however, more time consuming as an image snapshot needs to be
64 created based on the updated Vagrant definition before it can be attached to
65 the sandbox for validation testing.
66
67 In either case, the changes must be validated in the sandbox with tests to
68 make sure that we don't break current jobs and that the new software features
69 are operating as intended. Once this is done the changes will be merged and
70 the updates applied to the RelEng Jenkins production silo.
71
72 Please note that the combination of a Vagrant slave snapshot and a Jenkins
73 spinup script is what defines a given slave. For instance, a slave may be
74 defined by the [`releng/builder/vagrant/basic-java-node/`][8] Vagrant definition
75 and the [`releng/builder/jenkins-script/controller.sh`][9] Jenkins spinup script
76 (as the dynamic\_controller slave is). The pair provides the full definition of
77 the realized slave. Jenkins starts a slave using the last-spun Vagrant snapshot
78 for the specified definition. Once the base Vagrant instance is online Jenkins
79 checks out the RelEng/Builder repo on it and executes two scripts. The first is
80 [`basic_settings.sh`][10], which is a baseline for all of the slaves. The second is
81 the specialized spinup script, which handles any system updates, new software
82 installs or extra environment tweaks that don't make sense in a snapshot. After
83 all of these scripts have executed Jenkins will finally attach the slave as an
84 actual slave and start handling jobs on it.
85
86 ### Pool: Rackspace - Docker
87
88 <table class="table table-bordered">
89   <tr>
90     <td><b>Jenkins Label</b><br/> dynamic_docker</td>
91     <td><b>Slave Template name</b><br/> rk-f20-docker</td>
92     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/ovsdb-docker</td>
93     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/docker.sh</td>
94   </tr>
95   <tr>
96     <td colspan="4">
97       A Fedora 20 system that is configured with OpenJDK 1.7 (aka Java7) and
98       Docker. This system was originally custom built for the test needs of
99       the OVSDB project but other projects have expressed interest in using
100       it.
101     </td>
102   </tr>
103 </table>
104
105 ### Pool: Rackspace DFW
106
107 <table class="table table-bordered">
108   <tr>
109     <td><b>Jenkins Label</b><br/> dynamic_verify</td>
110     <td><b>Slave Template name</b><br/> rk-c-el65-build</td>
111     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/basic-builder</td>
112     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/builder.sh</td>
113   </tr>
114   <tr>
115     <td colspan="4">
116       A CentOS 6 build slave. This system has OpenJDK 1.7 (Java7) and OpenJDK
117       1.8 (Java8) installed on it along with all the other components and
118       libraries needed for building any current OpenDaylight project. This is
119       the label that is used for all basic -verify and -daily- builds for
120       projects.
121     </td>
122   </tr>
123 </table>
124
125 <table class="table table-bordered">
126   <tr>
127     <td><b>Jenkins Label</b><br/> dynamic_merge</td>
128     <td><b>Slave Template name</b><br/> rk-c-el65-build</td>
129     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/basic-builder</td>
130     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/builder.sh</td>
131   </tr>
132   <tr>
133     <td colspan="4">
134       See dynamic_verify (same image on the back side). This is the label that
135       is used for all basic -merge and -integration- builds for projects.
136     </td>
137   </tr>
138 </table>
139
140 ### Pool: Rackspace DFW - Devstack
141
142 <table class="table table-bordered">
143   <tr>
144     <td><b>Jenkins Label</b><br/> dynamic_devstack</td>
145     <td><b>Slave Template name</b><br/> rk-c7-devstack</td>
146     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/ovsdb-devstack</td>
147     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/devstack.sh</td>
148   </tr>
149   <tr>
150     <td colspan="4">
151       A CentOS 7 system purpose built for doing OpenStack testing using
152       DevStack. This slave is primarily targeted at the needs of the OVSDB
153       project. It has OpenJDK 1.7 (aka Java7) and other basic DevStack related
154       bits installed.
155     </td>
156   </tr>
157 </table>
158
159 ### Pool: Rackspace DFW - Integration
160
161 <table class="table table-bordered">
162   <tr>
163     <td><b>Jenkins Label</b><br/> dynamic_robot</td>
164     <td><b>Slave Template name</b><br/> rk-c-el6-robot</td>
165     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/integration-robotframework</td>
166     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/robot.sh</td>
167   </tr>
168   <tr>
169     <td colspan="4">
170       A CentOS 6 slave that is configured with OpenJDK 1.7 (Java7) and all the
171       current packages used by the integration project for doing robot driven
172       jobs. If you are executing robot framework jobs then your job should be
173       using this as the slave that you are tied to. This image does not
174       contain the needed libraries for building components of OpenDaylight,
175       only for executing robot tests.
176     </td>
177   </tr>
178 </table>
179
180 ### Pool: Rackspace DFW - Integration Dynamic Lab
181
182 <table class="table table-bordered">
183   <tr>
184     <td><b>Jenkins Label</b><br/> dynamic_controller</td>
185     <td><b>Slave Template name</b><br/> rk-c-el6-java</td>
186     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/basic-java-node</td>
187     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/controller.sh</td>
188   </tr>
189   <tr>
190     <td colspan="4">
191       A CentOS 6 slave that has the basic OpenJDK 1.7 (Java7) installed and is
192       capable of running the controller, not building.
193     </td>
194   </tr>
195 </table>
196
197 <table class="table table-bordered">
198   <tr>
199     <td><b>Jenkins Label</b><br/> dynamic_java</td>
200     <td><b>Slave Template name</b><br/> rk-c-el6-java</td>
201     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/basic-java-node</td>
202     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/controller.sh</td>
203   </tr>
204   <tr>
205     <td colspan="4">
206       See dynamic_controller as it is currently the same image.
207     </td>
208   </tr>
209 </table>
210
211 <table class="table table-bordered">
212   <tr>
213     <td><b>Jenkins Label</b><br/> dynamic_mininet</td>
214     <td><b>Slave Template name</b><br/> rk-c-el6-mininet</td>
215     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/basic-mininet-node</td>
216     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/mininet.sh</td>
217   </tr>
218   <tr>
219     <td colspan="4">
220       A CentOS 6 image that has mininet, openvswitch v2.0.x, netopeer and
221       PostgreSQL 9.3 installed. This system is targeted at playing the role of
222       a mininet system for integration tests. Netopeer is installed as it is
223       needed for various tests by Integration. PostgreSQL 9.3 is installed as
224       the system is also capable of being used as a VTN project controller and
225       VTN requires PostgreSQL 9.3.
226     </td>
227   </tr>
228 </table>
229
230 <table class="table table-bordered">
231   <tr>
232     <td><b>Jenkins Label</b><br/> dynamic_mininet_fedora</td>
233     <td><b>Slave Template name</b><br/> rk-f21-mininet</td>
234     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/basic-mininet-fedora-node</td>
235     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/mininet-fedora.sh</td>
236   </tr>
237   <tr>
238     <td colspan="4">
239       Basic Fedora 21 system with ovs v2.3.x and mininet 2.2.1
240     </td>
241   </tr>
242 </table>
243
244 ### Pool: Rackspace DFW - Matrix
245
246 <table class="table table-bordered">
247   <tr>
248     <td><b>Jenkins Label</b><br/> matrix_master</td>
249     <td><b>Slave Template name</b><br/> rk-c-el6-matrix</td>
250     <td><b>Vagrant Definition</b><br/> releng/builder/vagrant/basic-java-node</td>
251     <td><b>Spinup Script</b><br/> releng/builder/jenkins-scripts/matrix.sh</td>
252   </tr>
253   <tr>
254     <td colspan="4">
255       This is a very minimal system that is designed to spin up with 2 build
256       instances on it. The purpose is to have a location that is not the
257       Jenkins master itself for jobs that are executing matrix operations
258       since they need a director location. This image should not be used for
259       anything but tying matrix jobs before the matrx defined label ties.
260     </td>
261   </tr>
262 </table>
263
264 # <a name="creating_jenkins_jobs">Creating Jenkins Jobs</a>
265
266 Jenkins Job Builder takes simple descriptions of Jenkins jobs in YAML format
267 and uses them to configure Jenkins.
268
269 * [Jenkins Job Builder][11] \(JJB\) documentation
270 * [RelEng/Builder Gerrit][12]
271 * [RelEng/Builder Git repository][13]
272
273 ## <a name="jjb">Getting Jenkins Job Builder</a>
274
275 OpenDaylight uses Jenkins Job Builder to translate our in-repo YAML job
276 configuration into job descriptions suitable for consumption by Jenkins.
277 When testing new Jenkins Jobs in the [sandbox](#jenkins_sandbox), you'll
278 need to use the `jenkins-jobs` executable to translate a set of jobs into
279 their XML descriptions and upload them to the sandbox Jenkins server.
280
281 We document [installing](#jjb_install) `jenkins-jobs` below. We also provide
282 a [pre-built Docker image](#jjb_docker) with `jenkins-jobs` already installed.
283
284 ### <a name="jjb_install">Installing Jenkins Job Builder</a>
285
286 For users who aren't already experienced with Docker or otherwise don't want
287 to use our [pre-built JJB Docker image](#jjb_docker), installing JJB into a
288 virtual environment is an equally good option.
289
290 We recommend using [pip](#jjb_install_pip) to assist with JJB installs, but we
291 also document [installing from a git repository manually](#jjb_install_manual).
292 For both, we [recommend][17] using [virtual environments](#jjb_install_venv)
293 to isolate JJB and its dependencies.
294
295 The [`builder/jjb/requirements.txt`][33] file contains the currently
296 recommended JJB version. Because JJB is fairly unstable, it may be necessary
297 to debug things by installing different versions. This is documented for both
298 [pip-assisted](#jjb_install_pip) and [manual](#jjb_install_manual) installs.
299
300 #### <a name="jjb_install_venv">Virtual Environments</a>
301
302 For both [pip-assisted](#jjb_install_pip) and [manual](#jjb_install_manual) JJB
303 installs, we [recommend using virtual environments][17] to manage JJB and its
304 Python dependencies. The [Virtualenvwrapper][30] tool can help you do so.
305
306 There are good docs for [installing Virtualenvwrapper][31]. On Linux systems
307 with pip (typical), they amount to:
308
309     sudo pip install virtualenvwrapper
310
311 A virtual environment is simply a directory that you install Python programs
312 into and then append to the front of your path, causing those copies to be
313 found before any system-wide versions.
314
315 Create a new virtual environment for JJB.
316
317     # Virtaulenvwrapper uses this dir for virtual environments
318     $ echo $WORKON_HOME
319     /home/daniel/.virtualenvs
320     # Make a new virtual environment
321     $ mkvirtualenv jjb
322     # A new venv dir was created
323     (jjb)$ ls -rc $WORKON_HOME | tail -n 1
324     jjb
325     # The new venv was added to the front of this shell's path
326     (jjb)$ echo $PATH
327     /home/daniel/.virtualenvs/jjb/bin:<my normal path>
328     # Software installed to venv, like pip, is found before system-wide copies
329     (jjb)$ command -v pip
330     /home/daniel/.virtualenvs/jjb/bin/pip
331
332 With your virtual environment active, you should install JJB. Your install will
333 be isolated to that virtual environment's directory and only visible when the
334 virtual environment is active.
335
336 You can easily leave and return to your venv. Make sure you activate it before
337 each use of JJB.
338
339     (jjb)$ deactivate
340     $ command -v jenkins-jobs
341     # No jenkins-jobs executable found
342     $ workon jjb
343     (jjb)$ command -v jenkins-jobs
344     $WORKON_HOME/jjb/bin/jenkins-jobs
345
346 #### <a name="jjb_install_pip">Installing JJB using pip</a>
347
348 The recommended way to install JJB is via pip.
349
350 Clone the latest version of the [`releng/builder`][4] repo.
351
352     $ git clone https://git.opendaylight.org/gerrit/p/releng/builder.git
353
354 Before actually installing JJB and its dependencies, make sure you've [created
355 and activated](#jjb_install_venv) a virtual environment for JJB.
356
357     $ mkvirtualenv jjb
358
359 When in doubt, the best version of JJB to attempt to use is the version
360 specified in the [`builder/jjb/requirements.txt`][33] file.
361
362     # From the root of the releng/builder repo
363     (jjb)$ pip install -r jjb/requirements.txt
364
365 To change the version of JJB specified by [`builder/jjb/requirements.txt`][33]
366 to install from the latest commit to the master branch of JJB's git repository:
367
368     $ cat jjb/requirements.txt
369     -e git+https://git.openstack.org/openstack-infra/jenkins-job-builder#egg=jenkins-job-builder
370
371 To install from a tag, like 1.4.0:
372
373     $ cat jjb/requirements.txt
374     -e git+https://git.openstack.org/openstack-infra/jenkins-job-builder@1.4.0#egg=jenkins-job-builder
375
376 #### <a name="jjb_install_manual">Installing JJB Manually</a>
377
378 This section documents installing JJB from its manually cloned repository.
379
380 Note that [installing via pip](#jjb_install_pip) is typically simpler.
381
382 Checkout the version of JJB's source you'd like to build.
383
384 For example, using master:
385
386     $ git clone https://git.openstack.org/openstack-infra/jenkins-job-builder
387
388 Using a tag, like 1.4.0:
389
390     $ git clone https://git.openstack.org/openstack-infra/jenkins-job-builder
391     $ cd jenkins-job-builder
392     $ git checkout tags/1.4.0
393
394 Before actually installing JJB and its dependencies, make sure you've [created
395 and activated](#jjb_install_venv) a virtual environment for JJB.
396
397     $ mkvirtualenv jjb
398
399 You can then use [JJB's `requirements.txt`][20] file to install its
400 dependences.
401
402     # In the cloned JJB repo, with the desired version of the code checked out
403     (jjb)$ pip install -r requirements.txt
404
405 Finally, install JJB.
406
407     # In the cloned JJB repo, with the desired version of the code checked out
408     (jjb)$ python setup.py sdist
409     (jjb)$ pip install dist/jenkins-job-builder-*.tar.gz
410
411 Note that we're not using `sudo` to install as root, since we want to make
412 use of the venv we've configured for our current user.
413
414 ### <a name="jjb_install_docker">JJB Docker Image</a>
415
416 [Docker][14] is an open platform used to create virtualized Linux containers
417 for shipping self-contained applications. Docker leverages LinuX Containers
418 \(LXC\) running on the same operating system as the host machine, whereas a
419 traditional VM runs an operating system over the host.
420
421     docker pull zxiiro/jjb-docker
422     docker run --rm -v ${PWD}:/jjb jjb-docker
423
424 [This Dockerfile][15] created the [zxiiro/jjb-docker image][29]. By default it
425 will run:
426
427     jenkins-jobs test .
428
429 You'll need to use the `-v/--volume=[]` parameter to mount a directory
430 containing your YAML files, as well as a configured `jenkins.ini` file if you
431 wish to upload your jobs to the [sandbox](#jenkins_sandbox).
432
433 ## <a name="jjb_templates">Jenkins Job Templates</a>
434
435 The OpenDaylight [RelEng/Builder][21] project provides [JJB job templates][2]
436 that can be used to define basic jobs.
437
438 ### Verify Job Template
439
440 Trigger: **recheck**
441
442 The Verify job template creates a Gerrit Trigger job that will trigger when a
443 new patch is submitted to Gerrit.
444
445 Verify jobs can be retriggered in Gerrit by leaving a comment that says
446 **recheck**.
447
448 ### Merge Job Template
449
450 Trigger: **remerge**
451
452 The Merge job template is similar to the Verify Job Template except it will
453 trigger once a Gerrit patch is merged into the repo. It also automatically
454 runs the Maven goals **source:jar** and **javadoc:jar**.
455
456 This job will upload artifacts to [OpenDaylight's Nexus][22] on completion.
457
458 Merge jobs can be retriggered in Gerrit by leaving a comment that says
459 **remerge**.
460
461 ### Daily Job Template
462
463 The Daily (or Nightly) Job Template creates a job which will run on a build on
464 a Daily basis as a sanity check to ensure the build is still working day to
465 day.
466
467 ### Sonar Job Template
468
469 Trigger: **run-sonar**
470
471 This job runs Sonar analysis and reports the results to [OpenDaylight's Sonar
472 dashboard][23].
473
474 **Note:** Running the "run-sonar" trigger will cause Jenkins to remove its
475 existing vote if it's already -1'd or +1'd a comment. You will need to re-run
476 your verify job (recheck) after running this to get Jenkins to re-vote.
477
478 The Sonar Job Template creates a job which will run against the master branch,
479 or if BRANCHES are specified in the CFG file it will create a job for the
480 **First** branch listed.
481
482 ### Integration Job Template
483
484 The Integration Job Template creates a job which runs when a project that your
485 project depends on is successfully built. This job type is basically the same
486 as a verify job except that it triggers from other Jenkins jobs instead of via
487 Gerrit review updates. The dependencies that triger integration jobs are listed
488 in your project.cfg file under the **DEPENDENCIES** variable.
489
490 If no dependencies are listed then this job type is disabled by default.
491
492 ### <a name="distribution_test_job">Distribution Test Job</a>
493
494 Trigger: **test-distribution**
495
496 This job builds a distrbution against your patch, passes distribution sanity test
497 and reports back the results to Gerrit. Leave a comment with trigger keyword above
498 to activate it for a particular patch.
499
500 This job is maintained by the [Integration/Test][1] project.
501
502 **Note:** Running the "test-distribution" trigger will cause Jenkins to remove
503 it's existing vote if it's already -1 or +1'd a comment. You will need to
504 re-run your verify job (recheck) after running this to get Jenkins to put back
505 the correct vote.
506
507 ### <a name="patch_test_job">Patch Test Job</a>
508
509 Trigger: **test-integration**
510
511 This job runs a full integration test suite against your patch and reports
512 back the results to Gerrit. Leave a comment with trigger keyword above to activate it
513 for a particular patch.
514
515 This job is maintained by the [Integration/Test][1] project.
516
517 **Note:** Running the "test-integration" trigger will cause Jenkins to remove
518 it's existing vote if it's already -1 or +1'd a comment. You will need to
519 re-run your verify job (recheck) after running this to get Jenkins to put back
520 the correct vote.
521
522 Some considerations when using this job:
523
524 * The patch test verification takes some time (~2 hours) + consumes a lot of
525   resources so it is not meant to be used for every patch.
526 * The system tests for master patches will fail most of the times because both
527   code and test are unstable during the release cycle (should be good by the
528   end of the cycle).
529 * Because of the above, patch test results typically have to be interpreted by
530   system test experts. The [Integration/Test][1] project can help with that.
531
532
533 ### Autorelease Validate Job
534
535 Trigger: **revalidate**
536
537 This job runs the PROJECT-validate-autorelease-BRANCH job which is used as a
538 quick sanity test to ensure that a patch does not depend on features that do
539 not exist in the current release.
540
541 The **revalidate** trigger is useful in cases where a project's verify job
542 passed however validate failed due to infra problems or intermittent issues.
543 It will retrigger just the validate-autorelease job.
544
545 ## <a name="jjb_basic_configuration">Basic Job Configuration</a>
546
547 To create jobs based on existing [templates](#jjb_templates), use the
548 [`jjb-init-project.py`][24] helper script. When run from the root of
549 [RelEng/Builder's repo][13], it will produce a file in
550 `jjb/<project>/<project>.yaml` containing your project's base template.
551
552     $ python scripts/jjb-init-project.py --help
553     usage: jjb-init-project.py [-h] [-c CONF] [-d DEPENDENCIES] [-t TEMPLATES]
554                                [-s STREAMS] [-p POM] [-g MVN_GOALS] [-o MVN_OPTS]
555                                [-a ARCHIVE_ARTIFACTS]
556                                project
557
558     positional arguments:
559       project               project
560
561     optional arguments:
562       -h, --help            show this help message and exit
563       -c CONF, --conf CONF  Config file
564       -d DEPENDENCIES, --dependencies DEPENDENCIES
565                             Project dependencies A comma-seperated (no spaces)
566                             list of projects your project depends on. This is used
567                             to create an integration job that will trigger when a
568                             dependent project-merge job is built successfully.
569                             Example: aaa,controller,yangtools
570       -t TEMPLATES, --templates TEMPLATES
571                             Job templates to use
572       -s STREAMS, --streams STREAMS
573                             Release streams to fill with default options
574       -p POM, --pom POM     Path to pom.xml to use in Maven build (Default:
575                             pom.xml
576       -g MVN_GOALS, --mvn-goals MVN_GOALS
577                             Maven Goals
578       -o MVN_OPTS, --mvn-opts MVN_OPTS
579                             Maven Options
580       -a ARCHIVE_ARTIFACTS, --archive-artifacts ARCHIVE_ARTIFACTS
581                             Comma-seperated list of patterns of artifacts to
582                             archive on build completion. See:
583                             http://ant.apache.org/manual/Types/fileset.html
584
585 If all your project requires is the basic verify, merge, and daily jobs then
586 using the job template should be all you need to configure for your jobs.
587
588 ### Auto-Update Job Templates
589
590 The first line of the job YAML file produced by the [init script][24] will
591 contain the words `# REMOVE THIS LINE IF...`. Leaving this line will allow the
592 RelEng/Builder [auto-update script][25] to maintain this file for your project,
593 should the base templates ever change. It is a good idea to leave this line if
594 you do not plan to create any complex jobs outside of the provided template.
595
596 However, if your project needs more control over your jobs or if you have any
597 additional configuration outside of the standard configuration provided by the
598 template, then this line should be removed.
599
600 #### Tuning Templates
601
602 Allowing the auto-updated to manage your templates doesn't prevent you from
603 doing some configuration changes. Parameters can be passed to templates via
604 a `<project>.cfg` in your `builder/jjb/<project>` directory. An example is
605 provided below, others can be found in the repos of other projects. Tune as
606 necessary. Unnecessary paramaters can be removed or commented out with a "#"
607 sign.
608
609     JOB_TEMPLATES: verify,merge,sonar
610     STREAMS:
611     - beryllium:
612         branch: master
613         jdks: openjdk7,openjdk8
614         autorelease: true
615     - stable-lithium:
616         branch: stable/lithium
617         jdks: openjdk7
618     POM: dfapp/pom.xml
619     MVN_GOALS: clean install javadoc:aggregate -DrepoBuild -Dmaven.repo.local=$WORKSPACE/.m2repo -Dorg.ops4j.pax.url.mvn.localRepository=$WORKSPACE/.m2repo
620     MVN_OPTS: -Xmx1024m -XX:MaxPermSize=256m
621     DEPENDENCIES: aaa,controller,yangtools
622     ARCHIVE_ARTIFACTS: *.logs, *.patches
623
624 Note: [STREAMS][26] is a list of branches you want JJB to generate jobs for.
625 The first branch will be the branch that reports Sonar analysis. Each branch
626 must define a "jdks:" section listing the JDKs the verify jobs should run tests
627 against for the branch. The first JDK listed will be used as the default JDK
628 for non-verify type jobs.
629
630 Note: Projects that are participating in the simultanious release should set
631 "autorelease: true" under the streams they are participating in autorelease
632 for. This enables a new job type validate-autorelease which is used to help
633 identify if Gerrit patches might break autorelease or not.
634
635 #### Advanced
636
637 It is also possible to take advantage of both the auto-updater and creating
638 your own jobs. To do this, create a YAML file in your project's sub-directory
639 with any name other than \<project\>.yaml. The auto-update script will only
640 search for files with the name \<project\>.yaml. The normal \<project\>.yaml
641 file can then be left in tact with the "# REMOVE THIS LINE IF..." comment so
642 it will be automatically updated.
643
644 ## <a name="jjb_maven_properties">Maven Properties</a>
645
646 We provide a properties which your job can take advantage of if you want to do
647 something different depending on the job type that is run. If you create a
648 profile that activates on a property listed blow. The JJB templated jobs will
649 be able to activate the profile during the build to run any custom code you
650 wish to run in your project.
651
652     -Dmerge   : This flag is passed in our Merge job and is equivalent to the
653                 Maven property
654                 <merge>true</merge>.
655     -Dsonar   : This flag is passed in our Sonar job and is equivalent to the
656                 Maven property
657                 <sonar>true</sonar>.
658
659 # <a name="jenkins_sandbox">Jenkins Sandbox</a>
660
661 The [sandbox instance][27]'s purpose is to allow projects to test their JJB
662 setups before merging their code over to the RelEng master silo. It is
663 configured similarly to the master instance, although it cannot publish
664 artifacts or vote in Gerrit.
665
666 If your project requires access to the sandbox please open an OpenDaylight
667 Helpdesk ticket (<helpdesk@opendaylight.org>) and provide your ODL ID.
668
669 ## Notes Regarding the Sandbox
670
671 * Jobs are automatically deleted every Saturday at 08:00 UTC
672 * Committers can login and configure Jenkins jobs in the sandbox directly
673   (unlike with the master silo)
674 * Sandbox configuration mirrors the master silo when possible
675 * Sandbox jobs can NOT upload artifacts to Nexus
676 * Sandbox jobs can NOT vote on Gerrit
677
678 ## <a name="sandbox_config">Configuration</a>
679
680 Make sure you have Jenkins Job Builder [properly installed](#jjb_install).
681
682 If you do not already have access, open an OpenDaylight Helpdesk ticket
683 (<helpdesk@opendaylight.org>) to request access to ODL's sandbox instance.
684 [Integration/Test][1] committers have access by default.
685
686 JJB reads user-specific configuration from a [`jenkins.ini` file][7]. An
687 example is provided at [`builder/jenkins.ini.example`][28].
688
689     # If you don't have RelEng/Builder's repo, clone it
690     $ git clone https://git.opendaylight.org/gerrit/p/releng/builder.git
691     # Make a copy of the example JJB config file (in the builder/ directory)
692     $ cp jenkins.ini.example jenkins.ini
693     # Edit jenkins.ini with your username, API token and ODL's sandbox URL
694     $ cat jenkins.ini
695     <snip>
696     [jenkins]
697     user=<your ODL username>
698     password=<your ODL Jenkins sandbox API token>
699     url=https://jenkins.opendaylight.org/sandbox
700     <snip>
701
702 To get your API token, [login to the Jenkins **sandbox** instance][32] (_not
703 the main master Jenkins instance, different tokens_), go to your user page (by
704 clicking on your username, for example), click "Configure" and then "Show API
705 Token".
706
707 ## <a name="jjb_use_manual">Manual Method</a>
708
709 If you [installed JJB locally into a virtual environment](#jjb_install),
710 you should now activate that virtual environment to access the `jenkins-jobs`
711 executable.
712
713     $ workon jjb
714     (jjb)$
715
716 You'll want to work from the root of the RelEng/Builder repo, and you should
717 have your `jenkins.ini` file [properly configured](#sandbox_config).
718
719 ### <a name="jjb_manual_test">Testing Jobs</a>
720
721 It's good practice to use the `test` command to validate your JJB files before
722 pushing them.
723
724     jenkins-jobs --conf jenkins.ini test jjb/ <job-name>
725
726 If the job you'd like to test is a template with variables in its name, it
727 must be manually expanded before use. For example, the commonly used template
728 `{project}-csit-verify-1node-{functionality}` might expand to
729 `ovsdb-csit-verify-1node-netvirt`.
730
731     jenkins-jobs --conf jenkins.ini test jjb/ ovsdb-csit-verify-1node-netvirt
732
733 Successful tests output the XML description of the Jenkins job described by
734 the specified JJB job name.
735
736 ### <a name="jjb_manual_push">Pushing Jobs</a>
737
738 Once you've [configured your `jenkins.ini`](#sandbox_config) and [verified your
739 JJB jobs](#jjb_manual_test) produce valid XML descriptions of Jenkins jobs you
740 can push them to the Jenkins sandbox.
741
742 > _**Important Note:** When pushing with `jenkins-jobs`, a log message with
743 > the number of jobs you're pushing will be issued, typically to stdout.
744 > **If the number is greater than 1** (or the number of jobs you passed to
745 > the command to push) then you are pushing too many jobs and should **`ctrl+c`
746 > to cancel the upload**. Else you will flood the system with jobs._
747
748 >       INFO:jenkins_jobs.builder:Number of jobs generated:  1
749
750 > _**Failing to provide the final `<job-name>` param will push all jobs!**_
751
752     # Don't push all jobs by omitting the final param! (ctrl+c to abort)
753     jenkins-jobs --conf jenkins.ini update jjb/ <job-name>
754
755 ## <a name="jjb_use_docker">Docker Method</a>
756
757 If [using Docker](#jjb_install_docker):
758
759     # To test
760     docker run --rm -v ${PWD}:/jjb zxiiro/jjb-docker
761
762 > _**Important Note:** When pushing with `jenkins-jobs`, a log message with
763 > the number of jobs you're pushing will be issued, typically to stdout.
764 > **If the number is greater than 1** (or the number of jobs you passed to
765 > the command to push) then you are pushing too many jobs and should **`ctrl+c`
766 > to cancel the upload**. Else you will flood the system with jobs._
767
768 >       INFO:jenkins_jobs.builder:Number of jobs generated:  1
769
770 > _**Failing to provide the final `<job-name>` param will push all jobs!**_
771
772     # To upload jobs to the sandbox
773     # Please ensure that you include a configured jenkins.ini in your volume mount
774     # Making sure not to push more jobs than expected, ctrl+c to abort
775     docker run --rm -v ${PWD}:/jjb zxiiro/jjb-docker jenkins-jobs --conf jenkins.ini update . openflowplugin-csit-periodic-1node-cds-longevity-only-master
776
777 [0]: https://wiki.opendaylight.org/view/RelEng:Main "ODL RelEng parent project wiki"
778 [1]: https://wiki.opendaylight.org/view/Integration/Test "ODL Integration/Test wiki"
779 [2]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=tree;f=jenkins-scripts;h=371193b89f418de2ca0ffcb78be4a2d8046701ae;hb=refs/heads/master "JJB Templates Directory"
780 [3]: https://jenkins.opendaylight.org/releng "RelEng Jenkins"
781 [4]: https://git.opendaylight.org/gerrit/gitweb?p=releng%2Fbuilder.git;a=summary "RelEng/Builder gitweb"
782 [5]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=tree;f=jenkins-scripts;h=69252dd61ece511bd2018039b40e7836a8d49d21;hb=HEAD "Directory of Jenkins slave spinup scripts"
783 [6]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=tree;f=vagrant;h=409a2915d48bbdeea9edc811e1661ae17ca28280;hb=HEAD "Directory of Jenkins slave Vagrant definitions"
784 [7]: http://docs.openstack.org/infra/jenkins-job-builder/execution.html#configuration-file "JJB config file docs"
785 [8]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=tree;f=vagrant/basic-java-node;h=7197b26b747deba38c08f30a569c233fd9636d72;hb=HEAD "Example Jenkins slave Vagrant defition"
786 [9]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=blob;f=jenkins-scripts/controller.sh;h=893a04118a9bd9c55ae2a4a6af833fa089e0e0b4;hb=HEAD "Jenkins spinup script specialized for a slave"
787 [10]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=blob;f=jenkins-scripts/basic_settings.sh;h=9f6d2a89948d0a25a8a4a24102630ada494e8623;hb=HEAD "Jenkins spinup script common to all slaves"
788 [11]: http://ci.openstack.org/jenkins-job-builder/ "JJB docs"
789 [12]: https://git.opendaylight.org/gerrit/#/admin/projects/releng/builder "ODL RelEng/Builder Gerrit"
790 [13]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=summary "ODL RelEng/Builder repo"
791 [14]: https://www.docker.com/whatisdocker/ "Docker docs"
792 [15]: https://github.com/zxiiro/jjb-docker/blob/master/Dockerfile "Custom ODL JJB Dockerfile"
793 [16]: https://github.com/openstack-infra/jenkins-job-builder "JJB repo"
794 [17]: https://lists.opendaylight.org/pipermail/integration-dev/2015-April/003016.html "Recommendation to use venvs"
795 [18]: https://virtualenv.readthedocs.org/en/latest/ "Virtualenv docs"
796 [19]: http://virtualenv.readthedocs.org/en/latest/installation.html "Virtualenv install docs"
797 [20]: https://github.com/openstack-infra/jenkins-job-builder/blob/master/requirements.txt "JJB Python dependencies"
798 [21]: https://wiki.opendaylight.org/view/RelEng/Builder "ODL RelEng/Builder wiki"
799 [22]: https://nexus.opendaylight.org "OpenDaylight's Nexus portal"
800 [23]: https://sonar.opendaylight.org "OpenDaylight's Sonar portal"
801 [24]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=blob;f=scripts/jjb-init-project.py;h=2133475a4ff9e1f4b18cc288654a4dc050bf808f;hb=refs/heads/master "JJB project config init helper script"
802 [25]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=blob;f=scripts/jjb-autoupdate-project.py;h=56769bdb7ad5149404f4f50923f4d10af98d8248;hb=refs/heads/master "JJB project config auto-update helper script"
803 [26]: https://lists.opendaylight.org/pipermail/release/2015-July/003139.html "STREAMS vs BRANCHES design background"
804 [27]: https://jenkins.opendaylight.org/sandbox/ "OpenDaylight JJB Sandbox"
805 [28]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=blob;f=jenkins.ini.example;h=c8486f89af99741f4706c23cd6717df9b417ae10;hb=refs/heads/master "JJB sandbox user config example"
806 [29]: https://hub.docker.com/r/zxiiro/jjb-docker/ "Custom JJB Docker image"
807 [30]: https://virtualenvwrapper.readthedocs.org/en/latest/ "Virtualenvwrapper docs"
808 [31]: https://virtualenvwrapper.readthedocs.org/en/latest/install.html "Virtualenvwrapper install docs"
809 [32]: https://jenkins.opendaylight.org/sandbox/login "ODL Jenkins sandbox login"
810 [33]: https://git.opendaylight.org/gerrit/gitweb?p=releng/builder.git;a=blob;f=jjb/requirements.txt;h=0a4df2c2a575eb10d3abddb0fb2f4d048645e378;hb=refs/heads/master "ODL JJB requirements.txt file"