Brian O'Connor | 9fbe772 | 2017-10-27 12:44:04 -0700 | [diff] [blame] | 1 | --- |
| 2 | |
| 3 | - job_boiler_plate: &job_boiler_plate |
| 4 | name: job-boiler-plate |
| 5 | |
| 6 | project-type: freestyle |
| 7 | node: '{build-node}' |
| 8 | |
| 9 | ###################### |
| 10 | # Default parameters # |
| 11 | ###################### |
| 12 | |
| 13 | branch: master |
| 14 | submodule-recursive: true |
| 15 | git-url: '$GIT_URL/$GERRIT_PROJECT' |
| 16 | |
| 17 | ##################### |
| 18 | # Job Configuration # |
| 19 | ##################### |
| 20 | |
| 21 | properties: |
| 22 | - lf-infra-properties: |
| 23 | project: '{project}' |
| 24 | build-days-to-keep: '{build-days-to-keep}' |
| 25 | #- github: |
| 26 | # url: '{git-url}/{github-org}/{project}' |
| 27 | |
| 28 | parameters: |
| 29 | - lf-infra-parameters: |
| 30 | project: '{project}' |
| 31 | branch: '{branch}' |
| 32 | stream: '{stream}' |
| 33 | lftools-version: '{lftools-version}' |
| 34 | |
| 35 | wrappers: |
| 36 | - lf-infra-wrappers: |
| 37 | build-timeout: '{build-timeout}' |
| 38 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 39 | |
| 40 | |
| 41 | - verify_boiler_plate: &verify_boiler_plate |
| 42 | name: verify_boiler_plate |
| 43 | |
| 44 | concurrent: true |
| 45 | |
| 46 | scm: |
Brian O'Connor | e78aff6 | 2017-10-30 14:08:51 -0700 | [diff] [blame] | 47 | - lf-infra-gerrit-scm: |
| 48 | git-url: '{git-url}' |
Brian O'Connor | 9fbe772 | 2017-10-27 12:44:04 -0700 | [diff] [blame] | 49 | refspec: '$GERRIT_REFSPEC' |
| 50 | branch: '$GERRIT_BRANCH' |
| 51 | submodule-recursive: '{submodule-recursive}' |
Brian O'Connor | e78aff6 | 2017-10-30 14:08:51 -0700 | [diff] [blame] | 52 | choosing-strategy: gerrit |
Brian O'Connor | 9fbe772 | 2017-10-27 12:44:04 -0700 | [diff] [blame] | 53 | jenkins-ssh-credential: '{jenkins-ssh-credential}' |
| 54 | |
| 55 | triggers: |
| 56 | - gerrit: |
| 57 | #server-name: '{gerrit-server-name}' |
| 58 | server-name: 'ONOS Project Gerrit' |
| 59 | #trigger-on: '{obj:gerrit_verify_triggers}' |
| 60 | trigger-on: |
| 61 | - patchset-created-event: |
| 62 | exclude-drafts: true |
| 63 | exclude-trivial-rebase: false |
| 64 | exclude-no-code-change: true |
| 65 | - draft-published-event |
| 66 | projects: |
| 67 | - project-compare-type: PLAIN |
| 68 | #project-pattern: '{project}' |
| 69 | project-pattern: 'onos' |
| 70 | branches: |
| 71 | - branch-compare-type: ANT |
| 72 | #branch-pattern: '**/{branch}' |
| 73 | branch-pattern: '**/master' |
| 74 | #file-paths: '{obj:gerrit_trigger_file_paths}' |
| 75 | |
| 76 | - job-template: |
| 77 | #default name is global |
| 78 | name: '{project-name}-{stream}-verify' |
| 79 | |
| 80 | # Job template for Java verify jobs |
| 81 | # |
| 82 | # The purpose of this job templte is to run "maven clean install" for |
| 83 | # projects using this template. |
| 84 | # |
| 85 | # Required Variables: |
| 86 | # branch: git branch (eg. master) |
| 87 | |
| 88 | <<: *job_boiler_plate |
| 89 | # yamllint disable-line rule:key-duplicates |
| 90 | <<: *verify_boiler_plate |
| 91 | |
| 92 | builders: |
| 93 | #put shell scripts in file then make sure shell check is installed on verify vms |
Ray Milkey | 3510068 | 2017-10-30 16:09:34 -0700 | [diff] [blame^] | 94 | - shell: !include-raw-escape: onos-verify.yaml |
Brian O'Connor | 9fbe772 | 2017-10-27 12:44:04 -0700 | [diff] [blame] | 95 | |
| 96 | - project: |
| 97 | name: onos |
| 98 | project-name: onos |
| 99 | project: onos |
| 100 | |
| 101 | build-timeout: '1800' |
| 102 | build-node: 'ubuntu16.04-basebuild-8c-15g' |
| 103 | |
| 104 | stream: |
| 105 | - 'master' |
| 106 | |
| 107 | jobs: |
| 108 | - '{project-name}-{stream}-verify' |