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-ship-logs
54 - config-file-provider:
56 - file-id: 'jenkins-log-archives-settings'
57 variable: 'SETTINGS_FILE'
58 - lf-infra-create-netrc:
60 - shell: !include-raw:
61 - ../shell/lftools-install.sh
62 - ../shell/logs-deploy.sh
63 - shell: !include-raw:
64 - ../shell/logs-clear-credentials.sh
66 regexp: '^Build logs: .*'
69 name: lf-infra-package-listing
71 - shell: !include-raw:
72 - ../shell/package-listing.sh
75 name: lf-infra-packer-build
77 - config-file-provider:
79 - file-id: '{packer-cloud-settings}'
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
93 name: lf-infra-packer-validate
95 - config-file-provider:
97 - file-id: '{packer-cloud-settings}'
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
109 name: lf-infra-push-gerrit-patch
112 properties-content: |
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
122 name: lf-infra-sysstat
124 - shell: !include-raw:
125 - ../shell/sysstat.sh
128 name: lf-jacoco-nojava-workaround
130 - shell: 'mkdir -p $WORKSPACE/target/classes $WORKSPACE/jacoco/classes'
133 name: lf-infra-deploy-maven-file
136 mvn-version: '{mvn-version}'
137 - lf-provide-maven-settings:
138 global-settings-file: '{global-settings-file}'
139 settings-file: '{settings-file}'
141 properties-content: |
142 MAVEN_REPO_URL={maven-repo-url}
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
153 name: lf-maven-install
155 # Create a $HOME/.wgetrc to make the Maven download quiet.
156 - shell: 'echo "quiet=on" > "$HOME/.wgetrc"'
158 maven-version: '{mvn-version}'
160 - shell: 'rm "$HOME/.wgetrc"'
163 name: lf-provide-maven-settings
165 - config-file-provider:
167 - file-id: '{global-settings-file}'
168 variable: 'GLOBAL_SETTINGS_FILE'
169 - file-id: '{settings-file}'
170 variable: 'SETTINGS_FILE'
173 name: lf-provide-sigul-configuration
174 # Push configuration files to interact with sigul
176 - config-file-provider:
178 - file-id: sigul-config
179 variable: SIGUL_CONFIG
180 - file-id: sigul-password
181 variable: SIGUL_PASSWORD
184 - shell: !include-raw-escape: ../shell/sigul-configuration.sh
190 properties-content: PIP_PACKAGES={pip-packages}
191 - shell: !include-raw-escape: ../shell/pip-install.sh
194 name: lf-provide-maven-settings-cleanup
198 set +e # DO NOT cause build failure if any of the rm calls fail.
200 rm -f "$GLOBAL_SETTINGS_FILE" "$SETTINGS_FILE"
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
207 # DO NOT fail build if any of the above lines fail.
211 name: lf-provide-sigul-configuration-cleanup
212 # Clear sigul configuration files after we're done using them
214 - shell: !include-raw-escape: ../shell/sigul-configuration-cleanup.sh
217 name: lf-rtd-trigger-build
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
229 properties-content: DOC_DIR={doc-dir}
230 - shell: !include-raw-escape:
231 - ../shell/tox-install.sh
232 - ../shell/rtd-verify.sh
235 name: lf-sigul-install
236 # Requires that Jenkins be configured with SIGUL_BRIDGE_IP as a global
237 # Environment variable
239 - shell: !include-raw-escape: ../shell/sigul-install.sh
242 name: lf-infra-provide-docker-cleanup
246 set +e # DO NOT cause build failure if docker rmi fails
247 docker rmi -f $(docker images -a -q)
256 name: lf-infra-maven-parameters
260 # Sets an env var for shell scripts to be able to call the dynamically
261 # installed maven without having to calculate the M2_HOME themselves.
262 default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{mvn-version}'
263 description: 'Maven selector to be used by shell scripts'
266 default: '{mvn-opts}'
268 Maven Java opts. Example: -Xmx1024m -XX:MaxPermSize=256m
271 default: '{mvn-params}'
273 Maven parameters to pass to the mvn command.
276 # Sets an env var for shell scripts to be able to call the dynamically
277 # installed maven without having to calculate the path themselves.
278 # yamllint disable-line rule:line-length
279 default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{mvn-version}/bin/mvn'
280 description: 'Maven selector to be used by shell scripts'
282 name: STAGING_PROFILE_ID
283 default: '{staging-profile-id}'
285 Nexus staging profile ID.
289 name: lf-infra-openstack-parameters
293 default: '{os-cloud}'
295 The name of a cloud configuration in clouds.yaml. OS_CLOUD is a
296 variable name that is significant to openstack client as a
297 environment variable. Please refer to the documentation for
299 https://docs.openstack.org/developer/python-openstackclient/
303 name: lf-infra-parameters
304 # Standard parameters used in the LF CI environments. Gerrit variables are
305 # not used by GitHub projects, but defining them isn't harmful.
311 Parameter to identify a SCM project to build. This is typically
312 the project repo path. For example: ofextensions/circuitsw
317 Stream is often set to the same name as 'branch' but can
318 sometimes be used as a name representing a project's release code
324 Gerrit Trigger provided parameter to identify Gerrit project that
325 triggered the build. This is typically the project repo path as
326 exists in Gerrit. For example: ofextensions/circuitsw
328 If using Gerrit, in a manual build this should match the PROJECT
334 Gerrit Trigger provided parameter to identify a Gerrit branch.
336 If using Gerrit, in a manual build override with the branch to
340 default: 'refs/heads/{branch}'
342 Gerrit Trigger provided parameter to identify a refspec to fetch
345 If using Gerrit, in a manual build override with a refspec.
346 https://git-scm.com/book/en/v2/Git-Internals-The-Refspec
347 For example: 'refs/heads/master'
350 default: 'origin/{branch}'
352 GitHub PR Trigger provided parameter for specifying the commit
355 If using GitHub, in a manual build override with a branch path or
356 sha1 hash to a specific commit. For example: 'origin/master'
359 name: LFTOOLS_VERSION
360 default: '{lftools-version}'
362 Version of lftools to install. Can be a specific version like
363 '0.6.0' or a PEP-440 definition.
364 https://www.python.org/dev/peps/pep-0440/
365 For example '<1.0.0' or '>=1.0.0,<2.0.0'.
368 name: lf-infra-node-parameters
372 default: '{node-dir}'
373 description: Path to a Node project directory.
376 default: '{node-version}'
377 description: Version of NodeJS to install.
380 name: lf-infra-tox-parameters
386 Path to directory containing tox.ini file.
389 default: '{tox-envs}'
391 Tox environments to run build against.
392 Example: docs,py2,py3
399 name: lf-infra-properties
402 # Allow build data to be stored at a length configured by the
403 # downstream project.
404 days-to-keep: '{build-days-to-keep}'
405 # Do not allow artifacts to be stored in Jenkins.
406 artifact-num-to-keep: 0
413 name: lf-jacoco-report
416 exec-pattern: "**/**.exec"
417 class-pattern: "**/classes"
418 source-pattern: "**/src/main/java"
419 # yamllint disable-line rule:line-length
420 exclusion-pattern: "**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**"
431 name: lf-infra-publish
432 # lf-infra macro to finish up a build.
434 # Handles the following:
435 # - Shipping logs to Nexus logs site repository
436 # - Cleanup workspace
449 - lf-infra-package-listing
451 mark-unstable-if-failed: true
454 # Do not clean up *.jenkins-trigger files for jobs that use a
455 # properties file as input for triggering another build.
456 - '**/*.jenkins-trigger'
464 name: lf-infra-gerrit-scm
467 credentials-id: '{jenkins-ssh-credential}'
471 - 'refs/heads/{branch}'
475 recursive: '{submodule-recursive}'
476 choosing-strategy: '{choosing-strategy}'
479 name: lf-infra-github-scm
482 credentials-id: '{jenkins-ssh-credential}'
490 recursive: '{submodule-recursive}'
491 choosing-strategy: '{choosing-strategy}'
498 name: lf-infra-wrappers
503 timeout: '{build-timeout}'
504 timeout-var: 'BUILD_TIMEOUT'
507 - ssh-agent-credentials:
509 - '{jenkins-ssh-credential}'
512 - config-file-provider:
515 target: '$HOME/.npmrc'
517 target: '$HOME/.config/pip/pip.conf'