X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=jjb%2Flf-python-jobs.yaml;h=dbd09441f0860b3538e2a1b97a6625300779526a;hb=7265d1f18e9895a1d86449c3ee9fa57edd023df9;hp=671eaf9be923206e4a9e02f7d90391c39f193df1;hpb=59b3a3c53b1604b9aa5d46ed8e7083d46c6f95d1;p=releng%2Fglobal-jjb.git diff --git a/jjb/lf-python-jobs.yaml b/jjb/lf-python-jobs.yaml index 671eaf9b..dbd09441 100644 --- a/jjb/lf-python-jobs.yaml +++ b/jjb/lf-python-jobs.yaml @@ -36,7 +36,7 @@ - inject: properties-content: 'CLM_PROJECT_NAME={clm-project-name}' - shell: !include-raw-escape: - - ../shell/sonar-cli.sh + - ../shell/nexus-iq-cli.sh #################### # COMMON FUNCTIONS # @@ -51,10 +51,6 @@ archive-artifacts: > **/*.log - **/hs_err_*.log - **/target/**/feature.xml - **/target/failsafe-reports/failsafe-summary.xml - **/target/surefire-reports/*-output.txt ##################### # Job Configuration # @@ -73,14 +69,6 @@ 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: @@ -104,20 +92,79 @@ branch: master build-days-to-keep: 30 # 30 days for troubleshooting purposes build-timeout: 60 + disable-job: false git-url: '$GIT_URL/$PROJECT' + github-url: 'https://github.com' java-version: openjdk8 - staging-profile-id: '' # Unused in this job + nexus-iq-cli-version: 1.44.0-01 stream: master submodule-recursive: true + gerrit_trigger_file_paths: + - compare-type: ANT + pattern: '.*' + + # github_included_regions MUST match gerrit_trigger_file_paths + github_included_regions: + - '.*' + + ##################### + # Job Configuration # + ##################### + + disabled: '{disable-job}' + + parameters: + - lf-infra-parameters: + project: '{project}' + branch: '{branch}' + stream: '{stream}' + lftools-version: '{lftools-version}' + - string: + name: NEXUS_IQ_CLI_VERSION + default: '{nexus-iq-cli-version}' + description: Nexus IQ CLI package to download and use. + + 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 + + ###################### + # Default parameters # + ###################### + gerrit_clm_triggers: - comment-added-contains-event: - comment-contains-value: run-xc-clm$ + comment-contains-value: run-clm$ ##################### # Job Configuration # ##################### + 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 + triggers: # Build weekly on Saturdays - timed: 'H H * * 6' @@ -130,71 +177,224 @@ branches: - branch-compare-type: ANT branch-pattern: '**/{branch}' + file-paths: '{obj:gerrit_trigger_file_paths}' skip-vote: successful: true failed: true unstable: true notbuilt: true - wrappers: - - credentials-binding: - - username-password-separated: - credential-id: sonar-xc-clm - username: CLM_USER - password: CLM_PASSWORD + +- 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: + - lf-infra-properties: + build-days-to-keep: '{build-days-to-keep}' + - github: + url: '{github-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: + # Build weekly on Saturdays + - timed: 'H H * * 6' + - github-pull-request: + trigger-phrase: '^run-clm$' + only-trigger-phrase: false + status-context: 'CLM' + permit-all: true + github-hooks: true + white-list-target-branches: + - '{branch}' + included-regions: '{obj:github_included_regions}' + +######################## +# 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 + disable-job: false + git-url: '$GIT_URL/$PROJECT' + github-url: 'https://github.com' + java-version: openjdk8 + python-version: python2 + mvn-global-settings: global-settings + mvn-settings: '{mvn-settings}' + mvn-version: mvn35 + sonar-mvn-goal: 'sonar:sonar' + stream: master + submodule-recursive: true + + gerrit_trigger_file_paths: + - compare-type: REG_EXP + pattern: '.*' + + # github_included_regions MUST match gerrit_trigger_file_paths + github_included_regions: + - '.*' + + ##################### + # Job Configuration # + ##################### + + disabled: '{disable-job}' + + 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". + + builders: + - lf-infra-pre-build + - 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}' - - lf-infra-clm-python: - clm-project-name: '{project-name}' + - 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}-python-clm-{stream}' - id: gerrit-python-xc-clm + name: '{project-name}-tox-sonar' + id: gerrit-tox-sonar <<: *lf_python_common # yamllint disable-line rule:key-duplicates - <<: *lf_python_xc_clm + <<: *lf_tox_sonar + + ###################### + # Default parameters # + ###################### + + gerrit_sonar_triggers: + - comment-added-contains-event: + comment-contains-value: run-sonar$ + + ##################### + # Job Configuration # + ##################### scm: - lf-infra-gerrit-scm: jenkins-ssh-credential: '{jenkins-ssh-credential}' git-url: '{git-url}' - refspec: '$GERRIT_REFSPEC' - branch: '$GERRIT_BRANCH' + refspec: $GERRIT_REFSPEC + branch: $GERRIT_BRANCH submodule-recursive: '{submodule-recursive}' choosing-strategy: default + 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: '**/{branch}' + file-paths: '{obj:gerrit_trigger_file_paths}' + skip-vote: + successful: true + failed: true + unstable: true + notbuilt: true + - job-template: - name: '{project-name}-python-clm-{stream}' - id: github-python-xc-clm + name: '{project-name}-tox-sonar' + id: github-tox-sonar <<: *lf_python_common # yamllint disable-line rule:key-duplicates - <<: *lf_python_xc_clm + <<: *lf_tox_sonar properties: + - lf-infra-properties: + build-days-to-keep: '{build-days-to-keep}' - github: - url: '{git-url}/{github-org}/{project}' + url: '{github-url}/{github-org}/{project}' scm: - lf-infra-github-scm: url: '{git-clone-url}{github-org}/{project}' - refspec: '' - branch: 'refs/heads/{branch}' + 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-xc-clm$' + - github-pull-request: + trigger-phrase: '^run-sonar$' only-trigger-phrase: false - status-context: 'CLM' + status-context: 'Python Sonar' permit-all: true github-hooks: true - github-org: '' - github_pr_whitelist: - - '' - github_pr_admin_list: - - '' + white-list-target-branches: + - '{branch}' + included-regions: '{obj:github_included_regions}' ############## # Tox Verify # @@ -210,13 +410,24 @@ branch: master build-days-to-keep: 7 build-timeout: 15 + disable-job: false git-url: '$GIT_URL/$GERRIT_PROJECT' + github-url: 'https://github.com' + parallel: true python-version: python2 stream: master submodule-recursive: true tox-dir: '' tox-envs: '' + gerrit_trigger_file_paths: + - compare-type: REG_EXP + pattern: '.*' + + # github_included_regions MUST match gerrit_trigger_file_paths + github_included_regions: + - '.*' + ##################### # Job Configuration # ##################### @@ -224,6 +435,7 @@ project-type: freestyle node: '{build-node}' concurrent: true + disabled: '{disable-job}' properties: - lf-infra-properties: @@ -238,6 +450,10 @@ - lf-infra-tox-parameters: tox-dir: '{tox-dir}' tox-envs: '{tox-envs}' + - bool: + name: PARALLEL + default: '{parallel}' + description: Tox test type used to configure serial or parallel testing. wrappers: - lf-infra-wrappers: @@ -245,11 +461,7 @@ jenkins-ssh-credential: '{jenkins-ssh-credential}' 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-pre-build - lf-infra-tox-install: python-version: '{python-version}' - shell: !include-raw-escape: ../shell/tox-run.sh @@ -274,7 +486,7 @@ exclude-no-code-change: false - draft-published-event - comment-added-contains-event: - comment-contains-value: recheck$ + comment-contains-value: '^Patch Set[ ]+[0-9]+:([ ]+|[\n]+)(recheck|reverify)$' ##################### # Job Configuration # @@ -299,6 +511,7 @@ branches: - branch-compare-type: ANT branch-pattern: '**/{branch}' + file-paths: '{obj:gerrit_trigger_file_paths}' - job-template: # Python projects typically use tox to run testing. @@ -307,8 +520,10 @@ <<: *lf_tox_verify properties: + - lf-infra-properties: + build-days-to-keep: '{build-days-to-keep}' - github: - url: '{git-url}/{github-org}/{project}' + url: '{github-url}/{github-org}/{project}' scm: - lf-infra-github-scm: @@ -321,9 +536,11 @@ triggers: - github-pull-request: - trigger-phrase: '^recheck$' + trigger-phrase: '^(recheck|reverify)$' only-trigger-phrase: false - status-context: 'JJB Verify' + status-context: 'Tox Verify' permit-all: true github-hooks: true - auto-close-on-fail: false + white-list-target-branches: + - '{branch}' + included-regions: '{obj:github_included_regions}'