49ade4eef46128295e1fc06727cffada82e74344
[releng/global-jjb.git] / docs / jjb / lf-macros.rst
1 #############
2 Global Macros
3 #############
4
5 Builders
6 ========
7
8 comment-to-gerrit
9 -----------------
10
11 This macro will post a comment to the gerrit patchset if the build
12 creates a file named gerrit_comment.txt
13 To use this macro add it to the list of builders.
14
15
16 lf-fetch-dependent-patches
17 --------------------------
18
19 Fetch all patches provided via comment trigger
20
21 This macro will fetch all patches provided via comment trigger and will
22 create a list of projects from those patches via environment variable
23 called DEPENDENCY_BUILD_ORDER which can be used if necessary to build
24 projects in the specified order. The order is determined by first patch
25 instance for a project in the patch list.
26
27 lf-license-check
28 ----------------
29
30 Checks files for
31
32 :Required parameters:
33
34     :file-patterns: Space-separated list of file patterns to scan.
35         For example: \*.go \*.groovy \*.java \*.py \*.sh
36     :spdx-disable: Disable the SPDX-Identifier checker.
37     :lhc-version: Version of LHC to use.
38     :license-exclude-paths: Comma-separated list of paths to exclude from the
39         license checker. The paths used here will be matched using a contains
40         rule so it is best to be as precise with the path as possible.
41         For example a path of '/src/generated/' will be searched as
42         '**/src/generated/**'.
43         Example: org/opendaylight/yang/gen,protobuff/messages
44     :licenses-allowed: Comma-separated list of allowed licenses.
45         For example: Apache-2.0,EPL-1.0,MIT
46
47 lf-infra-create-netrc
48 ---------------------
49
50 Create a ~/.netrc file from a Maven settings.xml
51
52 :Required parameters:
53
54     :server-id: The id of a server as defined in settings.xml.
55
56 :Optional parameters:
57
58     :ALT_NEXUS_SERVER: URL of custom nexus server.
59         If set this will take precedence.
60         Use this to point at nexus3.$PROJECTDOMAIN
61         for example.
62
63 lf-infra-deploy-maven-file
64 --------------------------
65
66 Deploy files to a repository.
67
68 :Required parameters:
69
70     :global-settings-file: Global settings file to use.
71     :group-id: Group ID of the repository.
72     :maven-repo-url: URL of a Maven repository to upload to.
73     :mvn-version: Version of Maven to use.
74     :repo-id: Repository ID
75     :settings-file: Maven settings file to use.
76     :upload-files-dir: Path to directory containing one or more files
77
78 lf-infra-docker-login
79 ---------------------
80
81 Login into a custom hosted docker registry and / or docker.io
82
83 The Jenkins system should have the following global variables defined
84
85 :Environment variables:
86
87     :DOCKER_REGISTRY: The DNS address of the registry (IP or FQDN)
88         ex: nexus3.example.com (GLOBAL variable)
89
90     :REGISTRY_PORTS: Required if DOCKER_REGISTRY is set. Space separated list
91         of the registry ports to login to. ex: 10001 10002 10003 10004
92         (GLOBAL variable)
93
94     :DOCKERHUB_EMAIL: If this variable is set then an attempt to login to
95         DockerHub (docker.io) will be also made. It should be set to the email
96         address for the credentials that will get looked up. Only _one_
97         credential will ever be found in the maven settings file for DockerHub.
98         (GLOBAL variable)
99
100 lf-infra-gpg-verify-git-signature
101 ---------------------------------
102
103 Verify gpg signature of the latest commit message in $WORKSPACE.
104 This command assumes that $WORKSPACE is a git repo.
105
106 lf-infra-pre-build
107 ------------------
108
109 Macro that runs before all builders to prepare the system for job use.
110
111 lf-infra-package-listing
112 ------------------------
113
114 Lists distro level packages.
115
116 lf-infra-packer-build
117 ---------------------
118
119 Run `packer build` to build system images.
120
121 :Required parameters:
122
123     :openstack: Packer template uses an OpenStack builder (true|false).
124     :openstack-cloud: Sets OS_CLOUD variable to the value of this parameter.
125     :packer-version: Version of packer to use.
126     :platform: Build platform as found in the vars directory.
127     :template: Packer template to build as found in the templates directory.
128
129 :Optional parameters:
130
131     :update-cloud-image: Submit a change request to update new built cloud
132         image to Jenkins.
133
134 lf-infra-packer-validate
135 ------------------------
136
137 Run `packer validate` to verify packer configuration.
138
139 :Required parameters:
140
141     :openstack: Packer template uses an OpenStack builder (true|false).
142     :openstack-cloud: Sets OS_CLOUD variable to the value of this parameter.
143     :packer-cloud-settings: Cloud configuration file. Loaded on the build
144         server as CLOUDENV environment variable.
145     :packer-version: Version of packer to use.
146
147 lf-infra-push-gerrit-patch
148 --------------------------
149
150 Push a change through a Jenkins job to a Gerrit repository in an automated
151 way using git-review.
152
153 :Required parameters:
154
155     :gerrit-commit-message: Commit message to assign.
156     :gerrit-host: Gerrit hostname.
157     :gerrit-topic: Gerrit topic.
158     :gerrit-user: Gerrit user-id used for submitting the change.
159     :reviewers-email: Reviewers email. Space-separated list of
160         email addresses to CC on the patch.
161     :project: Gerrit project name.
162
163 .. _lf-infra-ship-logs:
164
165 lf-infra-ship-logs
166 ------------------
167
168 Gather and deploy logs to a log server.
169
170 lf-infra-sysstat
171 ----------------
172
173 Retrieves system stats.
174
175 lf-infra-update-packer-images
176 -----------------------------
177
178 Find and update the new built cloud image{s} in the ci-management source
179 repository.
180
181
182 lf-jacoco-nojava-workaround
183 ---------------------------
184
185 Workaround for Jenkins not able to find Java in JaCoCo runs.
186
187 .. _lf-maven-central:
188
189 lf-maven-central
190 ----------------
191
192 Publish artifacts to OSSRH (Maven Central) staging.
193
194 Requires that the project's settings.xml contains a ServerId 'ossrh' with the
195 credentials for the project's OSSRH account.
196
197 This macro assumes the directory ``$WORKSPACE/m2repo`` contains a Maven 2
198 repository which is to upload to OSSRH.
199
200 :Required parameters:
201
202     :mvn-central: Whether or not to upload to mvn-central. (true|false)
203     :mvn-global-settings: The name of the Maven global settings to use for
204         Maven configuration. (default: global-settings)
205     :mvn-settings: The name of settings file containing credentials for the
206         project.
207     :ossrh-profile-id: Nexus staging profile ID as provided by OSSRH.
208
209 .. literalinclude:: ../../.jjb-test/lf-macros/lf-maven-central-minimal.yaml
210    :language: yaml
211
212 .. _lf-maven-install:
213
214 lf-maven-install
215 ----------------
216
217 Call maven-target builder with a goal of --version to force Jenkins to
218 install the need provided version of Maven. This is needed for any shell scripts
219 that want to use Maven.
220
221 :Required parameters:
222
223     :mvn-version: Version of Maven to install.
224
225 lf-pip-install
226 --------------
227
228 Call pip install to install packages into a virtualenv located in
229 /tmp/v/VENV
230
231 .. note:: The first package listed in PIP_PACKAGES is used as the VENV name.
232
233 .. _lf-provide-maven-settings:
234
235 lf-provide-maven-settings
236 -------------------------
237
238 Push a global settings and user settings maven files to the build node.
239
240 lf-provide-maven-settings-cleanup
241 ---------------------------------
242
243 Cleanup maven settings.xml configuration. This should be called at the end of
244 any macros that calles the
245 :ref:`lf-provide-maven-settings <lf-provide-maven-settings>` macro.
246
247 lf-rtd-trigger-build
248 --------------------
249
250 Script to trigger a build on http://readthedocs.org
251
252 lf-rtd-verify
253 -------------
254
255 ReadTheDocs verify script. Installs and runs tox.
256
257 :Required parameters:
258
259     :doc-dir: Document directory.
260     :python-version: Python version.
261
262 check-info-votes
263 ----------------
264
265 Calls shell script to validate votes on a change to an INFO.yaml
266
267 lf-release
268 ----------
269
270 releases lftools.ini (required)
271 needed to push to nexus.
272
273 [nexus]
274 username=
275 password=
276
277 Then runs ../shell/release-job.sh
278
279
280 lf-sigul-sign-dir
281 -----------------
282
283 Use Sigul to sign a directory via {sign-dir}.
284
285 Requires ``SIGUL_BRIDGE_IP`` configured as a global envvar.
286
287 :Required Parameters:
288     :sign-artifacts: Whether or not to sign artifacts with Sigul.
289     :sign-dir: Directory to sign.
290     :sign-mode: serial|parallel
291
292 lf-infra-provide-docker-cleanup
293 -------------------------------
294
295 Forcibly removes all of the docker images.
296
297 lf-infra-sonar
298 ---------------
299
300 Runs Jenkins SonarQube plug-in.
301
302 Requires ``SonarQube Scanner for Jenkins``
303
304 .. note:: Sonar properties can be set directly in the job definition by
305    setting the sonar-project-file to ``""`` and adding all properties under
306    ``sonar-properties``.
307
308 :Optional Parameters:
309     :sonar-task: Sonar task to run. (default: "")
310     :sonar-project-file: The filename for the project's properties
311         (default: "sonar-project.properties")
312     :sonar-properties: Sonar configuration properties. (default: "")
313     :sonar-java-opts: JVM options. (default: "")
314     :sonar-additional-args: Additional command line arguments. (default: "")
315
316 lf-infra-sonar-with-prescan
317 ---------------------------
318
319 Runs Jenkins SonarQube plug-in after a pre-scan builder, which is defined by
320 the macro's caller.
321
322 Requires ``SonarQube Scanner for Jenkins``
323
324 .. note:: Sonar properties can be set directly in the job definition by
325    setting the sonar-project-file to ``""`` and adding all properties under
326    ``sonar-properties``.
327
328 :Required Parameters:
329     :lf-sonar-prescan: A builder that will run prior to the Sonar scan.
330
331 :Optional Parameters:
332     :sonar-task: Sonar task to run. (default: "")
333     :sonar-project-file: The filename for the project's properties
334         (default: "sonar-project.properties")
335     :sonar-properties: Sonar configuration properties. (default: "")
336     :sonar-java-opts: JVM options. (default: "")
337     :sonar-additional-args: Additional command line arguments. (default: "")
338
339 Parameters
340 ==========
341
342 lf-clm-parameters
343 -------------------
344
345 Provides the policy evaluation stage to run against Nexus IQ Server.
346 Valid values include: 'build', 'stage-release', 'operate'.
347
348 lf-cmake-parameters
349 -------------------
350
351 Provides parameters needed by CMake. Should be used by any jobs that need to
352 call the ``cmake && make && make install`` pattern.
353
354 lf-infra-maven-parameters
355 -------------------------
356
357 Provides parameters needed by Maven. Should be used by any jobs that need to
358 call the mvn cli.
359
360 lf-infra-openstack-parameters
361 -----------------------------
362
363 Provides parameters needed by OpenStack client CLI. Use in jobs that need to
364 call the openstack cli.
365
366 :Required Parameters:
367
368     :os-cloud: Configures ``OS_CLOUD`` envvar as used by openstack cli.
369
370 lf-infra-parameters
371 -------------------
372
373 Standard parameters used in the LF CI environments. Gerrit variables are
374 not used by GitHub projects, but defining them is not harmful. Should be used
375 in every job template.
376
377 lf-infra-node-parameters
378 ------------------------
379
380 Provides parameters needed by NodeJS and NPM. Should be used by any jobs that
381 need to run NodeJS or NPM.
382
383 lf-infra-tox-parameters
384 -----------------------
385
386 Provides parameters needed by python-tox. Should be used by any jobs that need
387 to run `tox <https://tox.readthedocs.io>`.
388
389
390 lf-build-with-parameters-maven-release
391 --------------------------------------
392
393 Provides parameters needed for maven release jobs 'build with parameters'.
394
395 Properties
396 ==========
397
398 lf-infra-properties
399 -------------------
400
401 Configures the build-discarder plugin for Jenkins with the recommended lf-infra
402 settings. Should be used in all job-templates.
403
404 Publishers
405 ==========
406
407 lf-jacoco-report
408 ----------------
409
410 Provides basic configuration for the JaCoCo plugin.
411
412 lf-infra-publish
413 ----------------
414
415 Provides basic lf-infra recommended publisher configurations which should be
416 used in all job templates. This primary objective of this trigger is to
417 gather build logs and copy them to a log server.
418
419 lf-infra-publish-windows
420 ------------------------
421
422 Windows publisher for use at the end of Windows job templates. Takes care of
423 cleaning out the workspace at the end of a job.
424
425 SCM
426 ===
427
428 lf-infra-gerrit-scm
429 -------------------
430
431 Basic SCM configuration for Gerrit based projects.
432
433 :Required parameters:
434
435     :submodule-timeout: Timeout (in minutes) for checkout operation.
436         (default: 10)
437     :submodule-disable: Disable submodule checkout operation.
438         (default: false)
439
440 lf-infra-github-scm
441 -------------------
442
443 Basic SCM configuration for GitHub based projects.
444
445 On the `branch` variable you can assign `$sha1` or `$ghprbActualCommit`
446 as the value.  This will require that the job be triggered via
447 the GHPRB plugin and not manually.
448
449 :Required parameters:
450
451     :submodule-timeout: Timeout (in minutes) for checkout operation.
452         (default: 10)
453     :submodule-disable: Disable submodule checkout operation.
454         (default: false)
455
456 Wrappers
457 ========
458
459 lf-infra-wrappers-common
460 ------------------------
461
462 Provides lf-infra recommended wrappers which should be used in every
463 job-template. It's meant to be used by more specific wrappers below.
464
465 lf-infra-wrappers
466 -----------------
467
468 Provides lf-infra recommended wrappers which should be used in every
469 job-template that's run on Linux systems.
470
471 This wrapper requires that a managed file called `npmrc` exists in the Jenkins.
472 The main use case here is to point to a npm proxy, on Nexus for example.
473 The type of the file should be "Custom file".  You can set various npmrc
474 settings in it. Documentation on npm configuration can be found at
475 https://docs.npmjs.com/files/npmrc. If you are not using npm then it is fine
476 for the file to be empty.
477
478 Example npmrc:
479
480 .. code-block:: bash
481
482    registry=https://nexus3.onap.org/repository/npm.public/
483
484 lf-infra-wrappers-windows
485 -------------------------
486
487 Provides lf-infra recommended wrappers which should be used in every
488 job-template that's run on Windows systems.