X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=jjb%2Flf-python-jobs.yaml;h=0fdb2a2dbd22a1913f2dd60490f0243b407df0d2;hb=f5172109fc4ca477ad8e4764f41ef03f43fe0956;hp=904a3f1638d912af61121fc2727c15a468df1be5;hpb=572515e4e8f5e114a8b3c10728a37f5ef3a6ce58;p=releng%2Fglobal-jjb.git diff --git a/jjb/lf-python-jobs.yaml b/jjb/lf-python-jobs.yaml index 904a3f16..0fdb2a2d 100644 --- a/jjb/lf-python-jobs.yaml +++ b/jjb/lf-python-jobs.yaml @@ -1,21 +1,380 @@ --- -- job-group: - name: '{project-name}-python-jobs' +########## +# Macros # +########## - # This job group contains all the recommended jobs that should be deployed - # for any project ci that is using Gerrit. +- 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 + +#################### +# COMMON FUNCTIONS # +#################### + +- lf_python_common: &lf_python_common + name: lf-python-common + + ###################### + # Default parameters # + ###################### + + archive-artifacts: > + **/*.log + + ##################### + # Job Configuration # + ##################### + + project-type: freestyle + node: "{build-node}" + + properties: + - lf-infra-properties: + build-days-to-keep: "{build-days-to-keep}" + + parameters: + - lf-infra-parameters: + project: "{project}" + branch: "{branch}" + stream: "{stream}" + + 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-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 + nexus-iq-cli-version: 1.44.0-01 + nexus-iq-namespace: "" # Recommend a trailing dash when set. Example: odl- + pre-build-script: "# pre-build script goes here" + stream: master + submodule-recursive: true + submodule-timeout: 10 + submodule-disable: false - jobs: - - gerrit-tox-verify + gerrit_trigger_file_paths: + - compare-type: ANT + pattern: ".*" -- job-group: - name: '{project-name}-github-python-jobs' + # github_included_regions MUST match gerrit_trigger_file_paths + github_included_regions: + - ".*" - # This job group contains all the recommended jobs that should be deployed - # for any project ci that is using GitHub. + ##################### + # Job Configuration # + ##################### + + disabled: "{disable-job}" + + parameters: + - lf-infra-parameters: + project: "{project}" + branch: "{branch}" + stream: "{stream}" + - 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}" + - shell: "{pre-build-script}" + - lf-infra-clm-python: + clm-project-name: "{nexus-iq-namespace}{project-name}" - jobs: - - github-tox-verify +- 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: '^Patch Set\s+\d+:\s+run-clm\s*$' + + ##################### + # 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}" + submodule-timeout: "{submodule-timeout}" + submodule-disable: "{submodule-disable}" + choosing-strategy: default + + 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}" + 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 + <<: *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}" + submodule-timeout: "{submodule-timeout}" + submodule-disable: "{submodule-disable}" + 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 + mvn-global-settings: global-settings + mvn-goals: validate + mvn-settings: "{mvn-settings}" + mvn-version: mvn35 + pre-build-script: "# pre-build script goes here" + python-version: python2 + sonar-mvn-goal: "sonar:sonar" + stream: master + submodule-recursive: true + submodule-timeout: 10 + submodule-disable: false + + 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}" + - 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: "{pre-build-script}" + - shell: !include-raw-escape: ../shell/tox-run.sh + - lf-provide-maven-settings: + global-settings-file: "{mvn-global-settings}" + settings-file: "{mvn-settings}" + - lf-infra-maven-sonar: + java-version: "{java-version}" + mvn-goals: "{mvn-goals}" + mvn-settings: "{mvn-settings}" + mvn-version: "{mvn-version}" + + publishers: + - lf-infra-publish + +- job-template: + name: "{project-name}-tox-sonar" + id: gerrit-tox-sonar + <<: *lf_python_common + # yamllint disable-line rule:key-duplicates + <<: *lf_tox_sonar + + ###################### + # Default parameters # + ###################### + + gerrit_sonar_triggers: + - comment-added-contains-event: + comment-contains-value: '^Patch Set\s+\d+:\s+run-sonar\s*$' + + ##################### + # 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}" + submodule-timeout: "{submodule-timeout}" + submodule-disable: "{submodule-disable}" + 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}-tox-sonar" + id: github-tox-sonar + <<: *lf_python_common + # yamllint disable-line rule:key-duplicates + <<: *lf_tox_sonar + + 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: "+refs/pull/*:refs/remotes/origin/pr/*" + branch: "$sha1" + submodule-recursive: "{submodule-recursive}" + submodule-timeout: "{submodule-timeout}" + submodule-disable: "{submodule-disable}" + choosing-strategy: default + jenkins-ssh-credential: "{jenkins-ssh-credential}" + + triggers: + - github-pull-request: + trigger-phrase: "^run-sonar$" + only-trigger-phrase: false + status-context: "Python Sonar" + permit-all: true + github-hooks: true + white-list-target-branches: + - "{branch}" + included-regions: "{obj:github_included_regions}" ############## # Tox Verify # @@ -24,88 +383,78 @@ - lf_tox_verify: &lf_tox_verify name: lf-tox-verify - # Tox runner to verify a project - # - # Runs tox to verify a project. - # - # Required Parameters: - # - # :build-node: The node to run build on. - # :jenkins-ssh-credential: Credential to use for SSH. (Generally should - # be configured in defaults.yaml) - # - # Optional Parameters: - # - # :branch: The branch to build against. (default: master) - # :build-days-to-keep: Days to keep build logs in Jenkins. (default: 7) - # :build-timeout: Timeout in seconds before aborting build. (default: 10) - # :git-url: URL clone project from. (default: $GIT_URL/$PROJECT) - # :stream: Keyword that can be used to represent a release code-name. - # Often the same as the branch. (default: master) - # :submodule-recursive: Whether to checkout submodules recursively. - # (default: true) - # :tox-dir: Directory containing the project's tox.ini relative to - # the workspace. Empty works if tox.ini is at project root. - # (default: '') - # :tox-envs: Tox environments to run. If blank run everything described - # in tox.ini. (default: '') - ###################### # Default parameters # ###################### branch: master build-days-to-keep: 7 - build-timeout: 10 - git-url: '$GIT_URL/$GERRIT_PROJECT' + build-timeout: 15 + disable-job: false + git-url: "$GIT_URL/$GERRIT_PROJECT" + github-url: "https://github.com" + parallel: true + pre-build-script: "# pre-build script goes here" + python-version: python2 stream: master submodule-recursive: true - tox-dir: '' - tox-envs: '' + submodule-timeout: 10 + submodule-disable: false + 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 # ##################### project-type: freestyle - node: '{build-node}' + node: "{build-node}" concurrent: true + disabled: "{disable-job}" properties: - lf-infra-properties: - build-days-to-keep: '{build-days-to-keep}' + build-days-to-keep: "{build-days-to-keep}" parameters: - lf-infra-parameters: - project: '{project}' - branch: '{branch}' - stream: '{stream}' - lftools-version: '{lftools-version}' + project: "{project}" + branch: "{branch}" + stream: "{stream}" - lf-infra-tox-parameters: - tox-dir: '{tox-dir}' - tox-envs: '{tox-envs}' + 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: - build-timeout: '{build-timeout}' - jenkins-ssh-credential: '{jenkins-ssh-credential}' + build-timeout: "{build-timeout}" + 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 - - shell: !include-raw-escape: - - ../shell/tox-install.sh - - ../shell/tox-run.sh + - lf-infra-pre-build + - lf-infra-tox-install: + python-version: "{python-version}" + - shell: "{pre-build-script}" + - shell: !include-raw-escape: ../shell/tox-run.sh publishers: - lf-infra-publish - job-template: # Python projects typically use tox to run testing. - name: '{project-name}-tox-verify-{stream}' + name: "{project-name}-tox-verify-{stream}" id: gerrit-tox-verify <<: *lf_tox_verify @@ -113,6 +462,7 @@ # Default parameters # ###################### + gerrit-skip-vote: false gerrit_verify_triggers: - patchset-created-event: exclude-drafts: true @@ -120,7 +470,7 @@ exclude-no-code-change: false - draft-published-event - comment-added-contains-event: - comment-contains-value: recheck$ + comment-contains-value: '^Patch Set\s+\d+:\s+(recheck|reverify)\s*$' ##################### # Job Configuration # @@ -128,48 +478,62 @@ 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}' + jenkins-ssh-credential: "{jenkins-ssh-credential}" + git-url: "{git-url}" + refspec: "$GERRIT_REFSPEC" + branch: "$GERRIT_BRANCH" + submodule-recursive: "{submodule-recursive}" + submodule-timeout: "{submodule-timeout}" + submodule-disable: "{submodule-disable}" choosing-strategy: gerrit triggers: - gerrit: - server-name: '{gerrit-server-name}' - trigger-on: '{obj:gerrit_verify_triggers}' + server-name: "{gerrit-server-name}" + trigger-on: "{obj:gerrit_verify_triggers}" projects: - project-compare-type: ANT - project-pattern: '{project}' + project-pattern: "{project}" branches: - branch-compare-type: ANT - branch-pattern: '**/{branch}' + branch-pattern: "**/{branch}" + file-paths: "{obj:gerrit_trigger_file_paths}" + skip-vote: + successful: "{gerrit-skip-vote}" + failed: "{gerrit-skip-vote}" + unstable: "{gerrit-skip-vote}" + notbuilt: "{gerrit-skip-vote}" - job-template: # Python projects typically use tox to run testing. - name: '{project-name}-tox-verify-{stream}' + name: "{project-name}-tox-verify-{stream}" id: github-tox-verify <<: *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: - url: '{git-clone-url}{github-org}/{project}' - refspec: '+refs/pull/*:refs/remotes/origin/pr/*' - branch: '{branch}' - submodule-recursive: '{submodule-recursive}' + url: "{git-clone-url}{github-org}/{project}" + refspec: "+refs/pull/*:refs/remotes/origin/pr/*" + branch: "$sha1" + submodule-recursive: "{submodule-recursive}" + submodule-timeout: "{submodule-timeout}" + submodule-disable: "{submodule-disable}" choosing-strategy: default - jenkins-ssh-credential: '{jenkins-ssh-credential}' + jenkins-ssh-credential: "{jenkins-ssh-credential}" 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}"