Fix typo in lf-sigual-install builders syntax
[releng/global-jjb.git] / jjb / lf-macros.yaml
1 ---
2 ############
3 # BUILDERS #
4 ############
5
6 - builder:
7     name: lf-fetch-dependent-patches
8     builders:
9       - shell: !include-raw: ../shell/gerrit-fetch-dependencies.sh
10       - inject:
11           properties-file: $WORKSPACE/.dependency.properties
12
13 - builder:
14     name: lf-license-check
15     builders:
16       - inject:
17           properties-content: |
18               FILE_PATTERNS={file-patterns}
19               SPDX_DISABLE={spdx-disable}
20               LHC_VERSION={lhc-version}
21               LICENSE_EXCLUDE_PATHS={license-exclude-paths}
22               LICENSES_ALLOWED={licenses-allowed}
23       - shell: !include-raw-escape:
24           - ../shell/license-check.sh
25
26 - builder:
27     name: lf-infra-create-netrc
28     builders:
29       - inject:
30           properties-content: 'SERVER_ID={server-id}'
31       - shell: !include-raw-escape: ../shell/create-netrc.sh
32
33 - builder:
34     name: lf-infra-docker-login
35     builders:
36       - lf-provide-maven-settings:
37           global-settings-file: '{global-settings-file}'
38           settings-file: '{settings-file}'
39       - shell: !include-raw-escape: ../shell/docker-login.sh
40       - lf-provide-maven-settings-cleanup
41
42 - builder:
43     name: lf-infra-gpg-verify-git-signature
44     # TODO: Verify signature after downloading users public key from a locally
45     # created repository instead of the public keymesh. This requires a process
46     # in place to get ODL developers public keys into a local repository without
47     # increasing the job thoughput.
48     builders:
49       - shell: !include-raw: ../shell/gpg-verify-git-signature.sh
50
51 - builder:
52     name: lf-infra-ship-logs
53     builders:
54       - config-file-provider:
55           files:
56             - file-id: 'jenkins-log-archives-settings'
57               variable: 'SETTINGS_FILE'
58       - lf-infra-create-netrc:
59           server-id: logs
60       - shell: !include-raw:
61           - ../shell/lftools-install.sh
62           - ../shell/logs-deploy.sh
63       - shell: !include-raw:
64           - ../shell/logs-clear-credentials.sh
65       - description-setter:
66           regexp: '^Build logs: .*'
67
68 - builder:
69     name: lf-infra-package-listing
70     builders:
71       - shell: !include-raw:
72           - ../shell/package-listing.sh
73
74 - builder:
75     name: lf-infra-packer-build
76     builders:
77       - config-file-provider:
78           files:
79             - file-id: '{packer-cloud-settings}'
80               variable: CLOUDENV
81       - inject:
82           properties-content: |
83               PACKER_PLATFORM={platform}
84               PACKER_TEMPLATE={template}
85               PACKER_VERSION={packer-version}
86       - shell: !include-raw-escape:
87           - ../shell/packer-install.sh
88           - ../shell/packer-build.sh
89       - shell: !include-raw:
90           - ../shell/packer-clear-credentials.sh
91
92 - builder:
93     name: lf-infra-packer-validate
94     builders:
95       - config-file-provider:
96           files:
97             - file-id: '{packer-cloud-settings}'
98               variable: 'CLOUDENV'
99       - inject:
100           properties-content: |
101               PACKER_VERSION={packer-version}
102       - shell: !include-raw-escape:
103           - ../shell/packer-install.sh
104           - ../shell/packer-validate.sh
105       - shell: !include-raw:
106           - ../shell/packer-clear-credentials.sh
107
108 - builder:
109     name: lf-infra-push-gerrit-patch
110     builders:
111       - inject:
112           properties-content: |
113               PROJECT={project}
114               GERRIT_COMMIT_MESSAGE={gerrit-commit-message}
115               GERRIT_HOST={gerrit-host}
116               GERRIT_TOPIC={gerrit-topic}
117               GERRIT_USER={gerrit-user}
118               REVIEWERS_EMAIL={reviewers-email}
119       - shell: !include-raw-escape: ../shell/gerrit-push-patch.sh
120
121 - builder:
122     name: lf-infra-sysstat
123     builders:
124       - shell: !include-raw:
125           - ../shell/sysstat.sh
126
127 - builder:
128     name: lf-jacoco-nojava-workaround
129     builders:
130       - shell: 'mkdir -p $WORKSPACE/target/classes $WORKSPACE/jacoco/classes'
131
132 - builder:
133     name: lf-infra-deploy-maven-file
134     builders:
135       - lf-maven-install:
136           mvn-version: '{mvn-version}'
137       - lf-provide-maven-settings:
138           global-settings-file: '{global-settings-file}'
139           settings-file: '{settings-file}'
140       - inject:
141           properties-content: |
142               MAVEN_REPO_URL={maven-repo-url}
143               REPO_ID={repo-id}
144               GROUP_ID={group-id}
145               UPLOAD_FILES_PATH={upload-files-dir}
146       - shell: !include-raw-escape:
147           - ../shell/lftools-install.sh
148           - ../shell/common-variables.sh
149           - ../shell/deploy-maven-file.sh
150       - lf-provide-maven-settings-cleanup
151
152 - builder:
153     name: lf-maven-install
154     builders:
155       # Create a $HOME/.wgetrc to make the Maven download quiet.
156       - shell: 'echo "quiet=on" > "$HOME/.wgetrc"'
157       - maven-target:
158           maven-version: '{mvn-version}'
159           goals: '--version'
160       - shell: 'rm "$HOME/.wgetrc"'
161
162 - builder:
163     name: lf-provide-maven-settings
164     builders:
165       - config-file-provider:
166           files:
167             - file-id: '{global-settings-file}'
168               variable: 'GLOBAL_SETTINGS_FILE'
169             - file-id: '{settings-file}'
170               variable: 'SETTINGS_FILE'
171
172 - builder:
173     name: lf-provide-sigul-configuration
174     # Push configuration files to interact with sigul
175     builders:
176       - config-file-provider:
177           files:
178             - file-id: sigul-config
179               variable: SIGUL_CONFIG
180             - file-id: sigul-password
181               variable: SIGUL_PASSWORD
182             - file-id: sigul-pki
183               variable: SIGUL_PKI
184       - shell: !include-raw-escape: ../shell/sigul-configuration.sh
185
186 - builder:
187     name: lf-pip-install
188     builders:
189       - inject:
190           properties-content: PIP_PACKAGES={pip-packages}
191       - shell: !include-raw-escape: ../shell/pip-install.sh
192
193 - builder:
194     name: lf-provide-maven-settings-cleanup
195     builders:
196       - shell: |
197           #!/bin/bash
198           set +e  # DO NOT cause build failure if any of the rm calls fail.
199
200           rm -f "$GLOBAL_SETTINGS_FILE" "$SETTINGS_FILE"
201
202           # In some cases we use the lf-provide-maven-settings macro to produce
203           # a "$HOME/.netrc" file containing credentials. Remove that file here
204           # too if it exists.
205           rm -f "$HOME/.netrc"
206
207           # DO NOT fail build if any of the above lines fail.
208           exit 0
209
210 - builder:
211     name: lf-provide-sigul-configuration-cleanup
212     # Clear sigul configuration files after we're done using them
213     builders:
214       - shell: !include-raw-escape: ../shell/sigul-configuration-cleanup.sh
215
216 - builder:
217     name: lf-rtd-trigger-build
218     builders:
219       - inject:
220           properties-content: |
221             RTD_BUILD_URL={rtd-build-url}
222             RTD_TOKEN={rtd-token}
223       - shell: !include-raw-escape: ../shell/rtd-trigger-build.sh
224
225 - builder:
226     name: lf-rtd-verify
227     builders:
228       - inject:
229           properties-content: DOC_DIR={doc-dir}
230       - shell: !include-raw-escape:
231           - ../shell/tox-install.sh
232           - ../shell/rtd-verify.sh
233
234 - builder:
235     name: lf-sigul-install
236     # Requires that Jenkins be configured with SIGUL_BRIDGE_IP as a global
237     # Environment variable
238     builders:
239       - shell: !include-raw-escape: ../shell/sigul-install.sh
240
241 - builder:
242     name: lf-infra-provide-docker-cleanup
243     builders:
244       - shell: |
245           #!/bin/bash
246           set +e  # DO NOT cause build failure if docker rmi fails
247           docker rmi -f $(docker images -a -q)
248           exit 0
249
250
251 ##############
252 # PARAMETERS #
253 ##############
254
255 - parameter:
256     name: lf-clm-parameters
257     parameters:
258       - string:
259           name: NEXUS_IQ_STAGE
260           default: '{nexus-iq-stage}'
261           description: |
262               Stage the policy evaluation will be run against on the Nexus IQ Server.
263
264 - parameter:
265     name: lf-cmake-parameters
266     # Parameters useful in CMake builds.
267     parameters:
268       - string:
269           name: BUILD_DIR
270           default: '{build-dir}'
271           description: 'Directory to build the project in.'
272       - string:
273           name: CMAKE_OPTS
274           default: '{cmake-opts}'
275           description: |
276               Options to pass to CMAKE.
277               Example: -DCMAKE_INSTALL_PREFIX=$WORKSPACE/target/output
278       - string:
279           name: INSTALL_PREFIX
280           default: '{install-prefix}'
281           description: 'Install prefix for C/C++ builds. Example: /usr/local'
282       - string:
283           name: MAKE_OPTS
284           default: '{make-opts}'
285           description: 'Options to pass to make. Example: -j8'
286
287 - parameter:
288     name: lf-infra-maven-parameters
289     parameters:
290       - string:
291           name: M2_HOME
292           # Sets an env var for shell scripts to be able to call the dynamically
293           # installed maven without having to calculate the M2_HOME themselves.
294           default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{mvn-version}'
295           description: 'Maven selector to be used by shell scripts'
296       - string:
297           name: MAVEN_OPTS
298           default: '{mvn-opts}'
299           description: |
300               Maven Java opts. Example: -Xmx1024m -XX:MaxPermSize=256m
301       - string:
302           name: MAVEN_PARAMS
303           default: '{mvn-params}'
304           description: |
305               Maven parameters to pass to the mvn command.
306       - string:
307           name: MVN
308           # Sets an env var for shell scripts to be able to call the dynamically
309           # installed maven without having to calculate the path themselves.
310           # yamllint disable-line rule:line-length
311           default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{mvn-version}/bin/mvn'
312           description: 'Maven selector to be used by shell scripts'
313       - string:
314           name: STAGING_PROFILE_ID
315           default: '{staging-profile-id}'
316           description: |
317               Nexus staging profile ID.
318
319
320 - parameter:
321     name: lf-infra-openstack-parameters
322     parameters:
323       - string:
324           name: OS_CLOUD
325           default: '{os-cloud}'
326           description: |
327               The name of a cloud configuration in clouds.yaml. OS_CLOUD is a
328               variable name that is significant to openstack client as a
329               environment variable. Please refer to the documentation for
330               further details.
331               https://docs.openstack.org/developer/python-openstackclient/
332
333
334 - parameter:
335     name: lf-infra-parameters
336     # Standard parameters used in the LF CI environments. Gerrit variables are
337     # not used by GitHub projects, but defining them isn't harmful.
338     parameters:
339       - string:
340           name: PROJECT
341           default: '{project}'
342           description: |
343               Parameter to identify a SCM project to build. This is typically
344               the project repo path. For example: ofextensions/circuitsw
345       - string:
346           name: STREAM
347           default: '{stream}'
348           description: |
349               Stream is often set to the same name as 'branch' but can
350               sometimes be used as a name representing a project's release code
351               name.
352       - string:
353           name: GERRIT_PROJECT
354           default: '{project}'
355           description: |
356               Gerrit Trigger provided parameter to identify Gerrit project that
357               triggered the build. This is typically the project repo path as
358               exists in Gerrit. For example: ofextensions/circuitsw
359
360               If using Gerrit, in a manual build this should match the PROJECT
361               parameter above.
362       - string:
363           name: GERRIT_BRANCH
364           default: '{branch}'
365           description: |
366               Gerrit Trigger provided parameter to identify a Gerrit branch.
367
368               If using Gerrit, in a manual build override with the branch to
369               build against.
370       - string:
371           name: GERRIT_REFSPEC
372           default: 'refs/heads/{branch}'
373           description: |
374               Gerrit Trigger provided parameter to identify a refspec to fetch
375               from Gerrit.
376
377               If using Gerrit, in a manual build override with a refspec.
378               https://git-scm.com/book/en/v2/Git-Internals-The-Refspec
379               For example: 'refs/heads/master'
380       - string:
381           name: sha1
382           default: 'origin/{branch}'
383           description: |
384               GitHub PR Trigger provided parameter for specifying the commit
385               to checkout.
386
387               If using GitHub, in a manual build override with a branch path or
388               sha1 hash to a specific commit. For example: 'origin/master'
389       # Tools
390       - string:
391           name: LFTOOLS_VERSION
392           default: '{lftools-version}'
393           description: |
394               Version of lftools to install. Can be a specific version like
395               '0.6.0' or a PEP-440 definition.
396               https://www.python.org/dev/peps/pep-0440/
397               For example '<1.0.0' or '>=1.0.0,<2.0.0'.
398
399 - parameter:
400     name: lf-infra-node-parameters
401     parameters:
402       - string:
403           name: NODE_DIR
404           default: '{node-dir}'
405           description: Path to a Node project directory.
406       - string:
407           name: NODE_VERSION
408           default: '{node-version}'
409           description: Version of NodeJS to install.
410
411 - parameter:
412     name: lf-infra-tox-parameters
413     parameters:
414       - string:
415           name: TOX_DIR
416           default: '{tox-dir}'
417           description: |
418               Path to directory containing tox.ini file.
419       - string:
420           name: TOX_ENVS
421           default: '{tox-envs}'
422           description: |
423               Tox environments to run build against.
424               Example: docs,py2,py3
425
426 ##############
427 # PROPERTIES #
428 ##############
429
430 - property:
431     name: lf-infra-properties
432     properties:
433       - build-discarder:
434           # Allow build data to be stored at a length configured by the
435           # downstream project.
436           days-to-keep: '{build-days-to-keep}'
437           # Do not allow artifacts to be stored in Jenkins.
438           artifact-num-to-keep: 0
439
440 ##############
441 # PUBLISHERS #
442 ##############
443
444 - publisher:
445     name: lf-jacoco-report
446     publishers:
447       - jacoco:
448           exec-pattern: "**/**.exec"
449           class-pattern: "**/classes"
450           source-pattern: "**/src/main/java"
451           # yamllint disable-line rule:line-length
452           exclusion-pattern: "**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**"
453           status-update: true
454           targets:
455             - branch:
456                 healthy: 10
457                 unhealthy: 20
458             - method:
459                 healthy: 50
460                 unhealthy: 40
461
462 - publisher:
463     name: lf-infra-publish
464     # lf-infra macro to finish up a build.
465     #
466     # Handles the following:
467     #   - Shipping logs to Nexus logs site repository
468     #   - Cleanup workspace
469     publishers:
470       - postbuildscript:
471           builders:
472             - role: BOTH
473               build-on:
474                 - ABORTED
475                 - FAILURE
476                 - NOT_BUILT
477                 - SUCCESS
478                 - UNSTABLE
479               build-steps:
480                 - lf-infra-sysstat
481                 - lf-infra-package-listing
482                 - lf-infra-ship-logs
483           mark-unstable-if-failed: true
484       - workspace-cleanup:
485           exclude:
486             # Do not clean up *.jenkins-trigger files for jobs that use a
487             # properties file as input for triggering another build.
488             - '**/*.jenkins-trigger'
489           fail-build: false
490
491 #######
492 # SCM #
493 #######
494
495 - scm:
496     name: lf-infra-gerrit-scm
497     scm:
498       - git:
499           credentials-id: '{jenkins-ssh-credential}'
500           url: '{git-url}'
501           refspec: '{refspec}'
502           branches:
503             - 'refs/heads/{branch}'
504           skip-tag: true
505           wipe-workspace: true
506           submodule:
507             recursive: '{submodule-recursive}'
508           choosing-strategy: '{choosing-strategy}'
509
510 - scm:
511     name: lf-infra-github-scm
512     scm:
513       - git:
514           credentials-id: '{jenkins-ssh-credential}'
515           url: '{url}'
516           refspec: '{refspec}'
517           branches:
518             - '{branch}'
519           skip-tag: true
520           wipe-workspace: true
521           submodule:
522             recursive: '{submodule-recursive}'
523           choosing-strategy: '{choosing-strategy}'
524
525 ############
526 # WRAPPERS #
527 ############
528
529 - wrapper:
530     name: lf-infra-wrappers
531     wrappers:
532       - mask-passwords
533       - timeout:
534           type: absolute
535           timeout: '{build-timeout}'
536           timeout-var: 'BUILD_TIMEOUT'
537           fail: true
538       - timestamps
539       - ssh-agent-credentials:
540           users:
541             - '{jenkins-ssh-credential}'
542       - openstack:
543           single-use: true
544       - config-file-provider:
545           files:
546             - file-id: npmrc
547               target: '$HOME/.npmrc'
548             - file-id: pipconf
549               target: '$HOME/.config/pip/pip.conf'