X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=jjb%2Flf-python-jobs.yaml;h=fc644c0c718119dc639843427bf833113ff999a6;hb=00c55b34e2528da665e08cc773c1af94984de115;hp=99c0661969f2e05e382ee23e7d3a7279a67cae91;hpb=05a16f0995e431393e85a9a0ea7f8dffbc61a3ff;p=releng%2Fglobal-jjb.git diff --git a/jjb/lf-python-jobs.yaml b/jjb/lf-python-jobs.yaml index 99c06619..fc644c0c 100644 --- a/jjb/lf-python-jobs.yaml +++ b/jjb/lf-python-jobs.yaml @@ -6,6 +6,7 @@ # for any project ci that is using Gerrit. jobs: + - gerrit-python-xc-clm - gerrit-tox-verify - job-group: @@ -15,32 +16,363 @@ # for any project ci that is using GitHub. jobs: + - github-python-xc-clm - github-tox-verify +########## +# Macros # +########## + +- builder: + name: lf-infra-tox-install + builders: + - inject: + properties-content: 'PYTHON_VERSION={python-version}' + - shell: !include-raw-escape: ../shell/tox-install.sh + +- builder: + name: lf-infra-clm-python + builders: + - inject: + properties-content: 'CLM_PROJECT_NAME={clm-project-name}' + - shell: !include-raw-escape: + - ../shell/nexus-iq-cli.sh + #################### -# Anchors & Macros # +# COMMON FUNCTIONS # #################### -- lf_tox_verify: &lf_tox_verify - name: lf-tox-verify +- lf_python_common: &lf_python_common + name: lf-python-common + + ###################### + # Default parameters # + ###################### + + archive-artifacts: > + **/*.log + **/hs_err_*.log + **/target/**/feature.xml + **/target/failsafe-reports/failsafe-summary.xml + **/target/surefire-reports/*-output.txt - # Required Variables: - # branch: git branch (default: master) - # tox-dir: directory containing the project's tox.ini relative to - # the workspace. Empty works if tox.ini is at project root. + ##################### + # Job Configuration # + ##################### project-type: freestyle node: '{build-node}' - concurrent: true + + properties: + - lf-infra-properties: + build-days-to-keep: '{build-days-to-keep}' + + parameters: + - lf-infra-parameters: + project: '{project}' + branch: '{branch}' + stream: '{stream}' + lftools-version: '{lftools-version}' + - string: + name: NEXUS_IQ_CLI_JAR + default: nexus-iq-cli-1.44.0-01.jar + description: Nexus IQ CLI package to download and use. + - string: + name: ARCHIVE_ARTIFACTS + default: '{archive-artifacts}' + description: Artifacts to archive to the logs server. + + wrappers: + - lf-infra-wrappers: + build-timeout: '{build-timeout}' + jenkins-ssh-credential: '{jenkins-ssh-credential}' + + publishers: + - lf-infra-publish + +################# +# Python XC CLM # +################# + +- lf_python_clm_xc: &lf_python_xc_clm + name: lf-python-xc-clm ###################### # Default parameters # ###################### branch: master - build-timeout: 10 + build-days-to-keep: 30 # 30 days for troubleshooting purposes + build-timeout: 60 + git-url: '$GIT_URL/$PROJECT' + java-version: openjdk8 + staging-profile-id: '' # Unused in this job + stream: master + submodule-recursive: true + + gerrit_clm_triggers: + - comment-added-contains-event: + comment-contains-value: run-clm$ + + ##################### + # Job Configuration # + ##################### + + triggers: + # Build weekly on Saturdays + - timed: 'H H * * 6' + - gerrit: + server-name: '{gerrit-server-name}' + trigger-on: '{obj:gerrit_clm_triggers}' + projects: + - project-compare-type: ANT + project-pattern: '{project}' + branches: + - branch-compare-type: ANT + branch-pattern: '**/{branch}' + skip-vote: + successful: true + failed: true + unstable: true + notbuilt: true + wrappers: + - credentials-binding: + - username-password-separated: + credential-id: nexus-iq-xc-clm + username: CLM_USER + password: CLM_PASSWORD + builders: + - lf-update-java-alternatives: + java-version: '{java-version}' + - lf-infra-clm-python: + clm-project-name: '{project-name}' + +- job-template: + name: '{project-name}-python-clm-{stream}' + id: gerrit-python-xc-clm + <<: *lf_python_common + # yamllint disable-line rule:key-duplicates + <<: *lf_python_xc_clm + + scm: + - lf-infra-gerrit-scm: + jenkins-ssh-credential: '{jenkins-ssh-credential}' + git-url: '{git-url}' + refspec: '$GERRIT_REFSPEC' + branch: '$GERRIT_BRANCH' + submodule-recursive: '{submodule-recursive}' + choosing-strategy: default + +- job-template: + name: '{project-name}-python-clm-{stream}' + id: github-python-xc-clm + <<: *lf_python_common + # yamllint disable-line rule:key-duplicates + <<: *lf_python_xc_clm + + properties: + - github: + url: '{git-url}/{github-org}/{project}' + + scm: + - lf-infra-github-scm: + url: '{git-clone-url}{github-org}/{project}' + refspec: '' + branch: 'refs/heads/{branch}' + submodule-recursive: '{submodule-recursive}' + choosing-strategy: default + jenkins-ssh-credential: '{jenkins-ssh-credential}' + + triggers: + - lf-infra-github-pr-trigger: + trigger-phrase: '^run-clm$' + only-trigger-phrase: false + status-context: 'CLM' + permit-all: true + github-hooks: true + github-org: '' + github_pr_whitelist: + - '' + github_pr_admin_list: + - '' + +######################## +# Python Sonar with Tox # +######################## + +- lf_tox_sonar: &lf_tox_sonar + name: lf-tox_sonar + + ###################### + # Default parameters # + ###################### + + branch: master # Sonar should always be run on master branch + build-days-to-keep: 7 + build-timeout: 60 + cron: 'H H * * *' # run daily + git-url: '$GIT_URL/$PROJECT' + java-version: openjdk8 + python-version: python2 + mvn-global-settings: global-settings + mvn-settings: '{mvn-settings}' + mvn-version: mvn33 + sonar-mvn-goal: 'sonar:sonar' + stream: master + submodule-recursive: true + + gerrit_sonar_triggers: + - comment-added-contains-event: + comment-contains-value: run-sonar$ + + ##################### + # Job Configuration # + ##################### + + parameters: + - lf-infra-parameters: + project: '{project}' + branch: '{branch}' + stream: '{stream}' + lftools-version: '{lftools-version}' + - string: + name: ARCHIVE_ARTIFACTS + default: '{archive-artifacts}' + description: Artifacts to archive to the logs server. + - string: + name: MVN + # Sets an env var for shell scripts to be able to call the dynamically + # installed maven without having to calculate the path themselves. + # yamllint disable-line rule:line-length + default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{mvn-version}/bin/mvn' + description: 'Maven selector to be used by shell scripts' + - string: + name: SONAR_MAVEN_GOAL + default: '{sonar-mvn-goal}' + description: | + Maven goals to pass to the Sonar call. Typically sonar:sonar + however to use a specific version of the sonar-maven-plugin we + can call "org.codehaus.mojo:sonar-maven-plugin:3.3.0.603:sonar". + + triggers: + - timed: '{obj:cron}' + - gerrit: + server-name: '{gerrit-server-name}' + trigger-on: '{obj:gerrit_sonar_triggers}' + projects: + - project-compare-type: 'ANT' + project-pattern: '{project}' + branches: + - branch-compare-type: 'ANT' + branch-pattern: '**/master' + skip-vote: + successful: true + failed: true + unstable: true + notbuilt: true + + builders: + - shell: !include-raw-escape: + # Workaround issue where the tox run later breaks the lftools virtualenv. + # Without running the install first the run in the publisher will fail + # due to missing lftools because it gets installed into a tox venv. + - ../shell/lftools-install.sh + - lf-infra-tox-install: + python-version: '{python-version}' + - shell: !include-raw-escape: ../shell/tox-run.sh + - lf-provide-maven-settings: + global-settings-file: '{mvn-global-settings}' + settings-file: '{mvn-settings}' + - lf-infra-tox-sonar: + java-version: '{java-version}' + mvn-settings: '{mvn-settings}' + mvn-version: '{mvn-version}' + + publishers: + - lf-infra-publish + +- builder: + name: lf-infra-tox-sonar + # Run a Sonar build with Maven + builders: + - lf-maven-install: + mvn-version: '{mvn-version}' + - lf-update-java-alternatives: + java-version: '{java-version}' + - inject: + # TODO: Switch this to the sonar wrapper when JJB 2.0 is available + properties-content: SONAR_HOST_URL=$SONAR_URL + - shell: !include-raw-escape: + - ../shell/common-variables.sh + - ../shell/maven-sonar.sh + - lf-provide-maven-settings-cleanup + +- job-template: + name: '{project-name}-tox-sonar' + id: gerrit-tox-sonar + <<: *lf_python_common + # yamllint disable-line rule:key-duplicates + <<: *lf_tox_sonar + + scm: + - lf-infra-gerrit-scm: + jenkins-ssh-credential: '{jenkins-ssh-credential}' + git-url: '{git-url}' + refspec: $GERRIT_REFSPEC + branch: $GERRIT_BRANCH + submodule-recursive: '{submodule-recursive}' + choosing-strategy: default + +- job-template: + name: '{project-name}-tox-sonar' + id: github-tox-sonar + <<: *lf_python_common + # yamllint disable-line rule:key-duplicates + <<: *lf_tox_sonar + + properties: + - github: + url: '{git-url}/{github-org}/{project}' + + scm: + - lf-infra-github-scm: + url: '{git-clone-url}{github-org}/{project}' + refspec: '+refs/pull/*:refs/remotes/origin/pr/*' + branch: '$sha1' + submodule-recursive: '{submodule-recursive}' + choosing-strategy: default + jenkins-ssh-credential: '{jenkins-ssh-credential}' + + triggers: + - lf-infra-github-pr-trigger: + trigger-phrase: '^run-sonar$' + only-trigger-phrase: false + status-context: 'Python Sonar' + permit-all: true + github-hooks: true + github-org: '' + github_pr_whitelist: + - '' + github_pr_admin_list: + - '' + +############## +# Tox Verify # +############## + +- lf_tox_verify: &lf_tox_verify + name: lf-tox-verify + + ###################### + # Default parameters # + ###################### + + branch: master + build-days-to-keep: 7 + build-timeout: 15 git-url: '$GIT_URL/$GERRIT_PROJECT' - stream: '{stream}' + python-version: python2 + stream: master submodule-recursive: true tox-dir: '' tox-envs: '' @@ -49,15 +381,20 @@ # Job Configuration # ##################### + project-type: freestyle + node: '{build-node}' + concurrent: true + properties: - lf-infra-properties: - build-days-to-keep: 7 + build-days-to-keep: '{build-days-to-keep}' parameters: - lf-infra-parameters: project: '{project}' branch: '{branch}' stream: '{stream}' + lftools-version: '{lftools-version}' - lf-infra-tox-parameters: tox-dir: '{tox-dir}' tox-envs: '{tox-envs}' @@ -73,17 +410,13 @@ # Without running the install first the run in the publisher will fail # due to missing lftools because it gets installed into a tox venv. - ../shell/lftools-install.sh - - shell: !include-raw-escape: - - ../shell/tox-install.sh - - ../shell/tox-run.sh + - lf-infra-tox-install: + python-version: '{python-version}' + - shell: !include-raw-escape: ../shell/tox-run.sh publishers: - lf-infra-publish -################# -# Job Templates # -################# - - job-template: # Python projects typically use tox to run testing. name: '{project-name}-tox-verify-{stream}' @@ -96,7 +429,7 @@ gerrit_verify_triggers: - patchset-created-event: - exclude-drafts: false + exclude-drafts: true exclude-trivial-rebase: false exclude-no-code-change: false - draft-published-event @@ -141,7 +474,7 @@ - lf-infra-github-scm: url: '{git-clone-url}{github-org}/{project}' refspec: '+refs/pull/*:refs/remotes/origin/pr/*' - branch: '{branch}' + branch: '$sha1' submodule-recursive: '{submodule-recursive}' choosing-strategy: default jenkins-ssh-credential: '{jenkins-ssh-credential}'