7 name: lf-fetch-dependent-patches
9 - shell: !include-raw: ../shell/gerrit-fetch-dependencies.sh
11 properties-file: $WORKSPACE/.dependency.properties
14 name: lf-license-check
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
27 name: lf-infra-create-netrc
30 properties-content: 'SERVER_ID={server-id}'
31 - shell: !include-raw-escape: ../shell/create-netrc.sh
34 name: lf-infra-docker-login
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
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.
49 - shell: !include-raw: ../shell/gpg-verify-git-signature.sh
52 name: lf-infra-pre-build
54 - shell: !include-raw-escape: ../shell/python-tools-install.sh
57 name: lf-infra-ship-logs
59 # Ensure no pre-existing .netrc files are overriding logs config
60 - lf-provide-maven-settings-cleanup
61 - config-file-provider:
63 - file-id: 'jenkins-log-archives-settings'
64 variable: 'SETTINGS_FILE'
65 - lf-infra-create-netrc:
67 - shell: !include-raw:
68 # Ensure python-tools are installed in case job template does not
69 # call the lf-infra-pre-build macro.
70 - ../shell/python-tools-install.sh
71 - ../shell/logs-deploy.sh
72 - shell: !include-raw:
73 - ../shell/logs-clear-credentials.sh
75 regexp: '^Build logs: .*'
78 name: lf-infra-package-listing
80 - shell: !include-raw:
81 - ../shell/package-listing.sh
84 name: lf-infra-packer-build
87 condition-kind: boolean-expression
88 condition-expression: '{openstack}'
90 - config-file-provider:
92 - file-id: clouds-yaml
93 target: '$HOME/.config/openstack/clouds.yaml'
95 properties-content: OS_CLOUD={openstack-cloud}
96 - config-file-provider:
98 - file-id: '{packer-cloud-settings}'
101 properties-content: |
102 PACKER_PLATFORM={platform}
103 PACKER_TEMPLATE={template}
104 PACKER_VERSION={packer-version}
105 - shell: !include-raw-escape:
106 - ../shell/packer-install.sh
107 - ../shell/packer-build.sh
108 - shell: !include-raw:
109 - ../shell/packer-clear-credentials.sh
112 name: lf-infra-packer-validate
115 condition-kind: boolean-expression
116 condition-expression: '{openstack}'
118 - config-file-provider:
120 - file-id: clouds-yaml
121 target: '$HOME/.config/openstack/clouds.yaml'
123 properties-content: OS_CLOUD={openstack-cloud}
124 - config-file-provider:
126 - file-id: '{packer-cloud-settings}'
129 properties-content: |
130 PACKER_VERSION={packer-version}
131 - shell: !include-raw-escape:
132 - ../shell/packer-install.sh
133 - ../shell/packer-validate.sh
134 - shell: !include-raw:
135 - ../shell/packer-clear-credentials.sh
138 name: lf-infra-push-gerrit-patch
141 properties-content: |
143 GERRIT_COMMIT_MESSAGE={gerrit-commit-message}
144 GERRIT_HOST={gerrit-host}
145 GERRIT_TOPIC={gerrit-topic}
146 GERRIT_USER={gerrit-user}
147 REVIEWERS_EMAIL={reviewers-email}
148 - shell: !include-raw-escape: ../shell/gerrit-push-patch.sh
151 name: lf-infra-sysstat
153 - shell: !include-raw:
154 - ../shell/sysstat.sh
157 name: lf-jacoco-nojava-workaround
159 - shell: 'mkdir -p $WORKSPACE/target/classes $WORKSPACE/jacoco/classes'
162 name: lf-infra-deploy-maven-file
165 mvn-version: '{mvn-version}'
166 - lf-provide-maven-settings:
167 global-settings-file: '{global-settings-file}'
168 settings-file: '{settings-file}'
170 properties-content: |
171 MAVEN_REPO_URL={maven-repo-url}
174 UPLOAD_FILES_PATH={upload-files-dir}
175 - shell: !include-raw-escape:
176 - ../shell/common-variables.sh
177 - ../shell/deploy-maven-file.sh
178 - lf-provide-maven-settings-cleanup
181 name: lf-maven-central
184 condition-kind: boolean-expression
185 condition-expression: '{mvn-central}'
187 - lf-provide-maven-settings:
188 global-settings-file: '{mvn-global-settings}'
189 settings-file: '{mvn-settings}'
190 - lf-infra-create-netrc:
193 properties-content: 'OSSRH_PROFILE_ID={ossrh-profile-id}'
194 - shell: !include-raw-escape: ../shell/maven-central.sh
195 - lf-provide-maven-settings-cleanup
198 name: lf-maven-install
200 # Create a $HOME/.wgetrc to make the Maven download quiet.
201 - shell: 'echo "quiet=on" > "$HOME/.wgetrc"'
203 maven-version: '{mvn-version}'
205 - shell: 'rm "$HOME/.wgetrc"'
208 name: lf-provide-maven-settings
210 - config-file-provider:
212 - file-id: '{global-settings-file}'
213 variable: 'GLOBAL_SETTINGS_FILE'
214 - file-id: '{settings-file}'
215 variable: 'SETTINGS_FILE'
221 properties-content: PIP_PACKAGES={pip-packages}
222 - shell: !include-raw-escape: ../shell/pip-install.sh
225 name: lf-provide-maven-settings-cleanup
229 set +e # DO NOT cause build failure if any of the rm calls fail.
231 rm -f "$GLOBAL_SETTINGS_FILE" "$SETTINGS_FILE"
233 # In some cases we use the lf-provide-maven-settings macro to produce
234 # a "$HOME/.netrc" file containing credentials. Remove that file here
238 # DO NOT fail build if any of the above lines fail.
242 name: lf-rtd-trigger-build
245 properties-content: |
246 RTD_BUILD_URL={rtd-build-url}
247 RTD_TOKEN={rtd-token}
248 - shell: !include-raw-escape: ../shell/rtd-trigger-build.sh
254 properties-content: DOC_DIR={doc-dir}
255 - shell: !include-raw-escape: ../shell/tox-install.sh
256 - shell: !include-raw-escape: ../shell/rtd-verify.sh
259 name: lf-sigul-sign-dir
260 # Requires that Jenkins be configured with SIGUL_BRIDGE_IP as a global
261 # Environment variable
264 condition-kind: boolean-expression
265 condition-expression: '{sign-artifacts}'
267 - config-file-provider:
269 - file-id: sigul-config
270 variable: SIGUL_CONFIG
271 - file-id: sigul-password
272 variable: SIGUL_PASSWORD
275 - shell: !include-raw-escape: ../shell/sigul-configuration.sh
276 - shell: !include-raw-escape: ../shell/sigul-install.sh
278 properties-content: |
280 SIGN_MODE={sign-mode}
281 - shell: !include-raw-escape:
282 - ../shell/sigul-sign-dir.sh
283 - shell: !include-raw-escape: ../shell/sigul-configuration-cleanup.sh
286 name: lf-infra-provide-docker-cleanup
290 set +e # DO NOT cause build failure if docker rmi fails
291 docker rmi -f $(docker images -a -q)
300 name: lf-clm-parameters
304 default: '{nexus-iq-stage}'
306 Stage the policy evaluation will be run against on the Nexus IQ Server.
309 name: lf-cmake-parameters
310 # Parameters useful in CMake builds.
314 default: '{build-dir}'
315 description: 'Directory to build the project in.'
318 default: '{cmake-opts}'
320 Options to pass to CMAKE.
321 Example: -DCMAKE_INSTALL_PREFIX=$WORKSPACE/target/output
324 default: '{install-prefix}'
325 description: 'Install prefix for C/C++ builds. Example: /usr/local'
328 default: '{make-opts}'
329 description: 'Options to pass to make. Example: -j8'
332 name: lf-infra-maven-parameters
336 # Sets an env var for shell scripts to be able to call the dynamically
337 # installed maven without having to calculate the M2_HOME themselves.
338 default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{mvn-version}'
339 description: 'Maven selector to be used by shell scripts'
342 default: '{mvn-opts}'
344 Maven Java opts. Example: -Xmx1024m -XX:MaxPermSize=256m
347 default: '{mvn-params}'
349 Maven parameters to pass to the mvn command.
352 # Sets an env var for shell scripts to be able to call the dynamically
353 # installed maven without having to calculate the path themselves.
354 # yamllint disable-line rule:line-length
355 default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{mvn-version}/bin/mvn'
356 description: 'Maven selector to be used by shell scripts'
359 name: lf-infra-openstack-parameters
363 default: '{os-cloud}'
365 The name of a cloud configuration in clouds.yaml. OS_CLOUD is a
366 variable name that is significant to openstack client as a
367 environment variable. Please refer to the documentation for
369 https://docs.openstack.org/developer/python-openstackclient/
373 name: lf-infra-parameters
374 # Standard parameters used in the LF CI environments. Gerrit variables are
375 # not used by GitHub projects, but defining them isn't harmful.
381 Parameter to identify a SCM project to build. This is typically
382 the project repo path. For example: ofextensions/circuitsw
387 Stream is often set to the same name as 'branch' but can
388 sometimes be used as a name representing a project's release code
394 Gerrit Trigger provided parameter to identify Gerrit project that
395 triggered the build. This is typically the project repo path as
396 exists in Gerrit. For example: ofextensions/circuitsw
398 If using Gerrit, in a manual build this should match the PROJECT
404 Gerrit Trigger provided parameter to identify a Gerrit branch.
406 If using Gerrit, in a manual build override with the branch to
410 default: 'refs/heads/{branch}'
412 Gerrit Trigger provided parameter to identify a refspec to fetch
415 If using Gerrit, in a manual build override with a refspec.
416 https://git-scm.com/book/en/v2/Git-Internals-The-Refspec
417 For example: 'refs/heads/master'
420 default: 'origin/{branch}'
422 GitHub PR Trigger provided parameter for specifying the commit
425 If using GitHub, in a manual build override with a branch path or
426 sha1 hash to a specific commit. For example: 'origin/master'
429 name: lf-infra-node-parameters
433 default: '{node-dir}'
434 description: Path to a Node project directory.
437 default: '{node-version}'
438 description: Version of NodeJS to install.
441 name: lf-infra-tox-parameters
447 Path to directory containing tox.ini file.
450 default: '{tox-envs}'
452 Tox environments to run build against.
453 Example: docs,py2,py3
460 name: lf-infra-properties
463 # Allow build data to be stored at a length configured by the
464 # downstream project.
465 days-to-keep: '{build-days-to-keep}'
466 # Do not allow artifacts to be stored in Jenkins.
467 artifact-num-to-keep: 0
474 name: lf-jacoco-report
477 exec-pattern: "**/**.exec"
478 class-pattern: "**/classes"
479 source-pattern: "**/src/main/java"
480 # yamllint disable-line rule:line-length
481 exclusion-pattern: "**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**"
492 name: lf-infra-publish
493 # lf-infra macro to finish up a build.
495 # Handles the following:
496 # - Shipping logs to Nexus logs site repository
497 # - Cleanup workspace
510 - lf-infra-package-listing
512 mark-unstable-if-failed: true
515 # Do not clean up *.jenkins-trigger files for jobs that use a
516 # properties file as input for triggering another build.
517 - '**/*.jenkins-trigger'
521 name: lf-infra-publish-windows
522 # lf-infra macro to finish up a build.
524 # Handles the following:
525 # - Shipping logs to Nexus logs site repository
526 # - Cleanup workspace
528 # TODO: RELENG-1228 Develop log shipping script for Windows systems
539 # - lf-infra-ship-logs-windows
540 # mark-unstable-if-failed: true
543 # Do not clean up *.jenkins-trigger files for jobs that use a
544 # properties file as input for triggering another build.
545 - '**/*.jenkins-trigger'
553 name: lf-infra-gerrit-scm
556 credentials-id: '{jenkins-ssh-credential}'
560 - 'refs/heads/{branch}'
564 recursive: '{submodule-recursive}'
565 timeout: '{submodule-timeout}'
566 choosing-strategy: '{choosing-strategy}'
569 name: lf-infra-github-scm
572 credentials-id: '{jenkins-ssh-credential}'
580 recursive: '{submodule-recursive}'
581 timeout: '{submodule-timeout}'
582 choosing-strategy: '{choosing-strategy}'
589 name: lf-infra-wrappers-common
594 timeout: '{build-timeout}'
595 timeout-var: 'BUILD_TIMEOUT'
602 name: lf-infra-wrappers
604 - lf-infra-wrappers-common:
605 build-timeout: '{build-timeout}'
606 - config-file-provider:
609 target: '$HOME/.npmrc'
611 target: '$HOME/.config/pip/pip.conf'
612 - ssh-agent-credentials:
614 - '{jenkins-ssh-credential}'
617 name: lf-infra-wrappers-windows
619 - lf-infra-wrappers-common:
620 build-timeout: '{build-timeout}'