blob: c95a2ece4233817e0695054f20858b048df6382c [file] [log] [blame]
Brian O'Connor9fbe7722017-10-27 12:44:04 -07001---
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'Connore78aff62017-10-30 14:08:51 -070047 - lf-infra-gerrit-scm:
48 git-url: '{git-url}'
Brian O'Connor9fbe7722017-10-27 12:44:04 -070049 refspec: '$GERRIT_REFSPEC'
50 branch: '$GERRIT_BRANCH'
51 submodule-recursive: '{submodule-recursive}'
Brian O'Connore78aff62017-10-30 14:08:51 -070052 choosing-strategy: gerrit
Brian O'Connor9fbe7722017-10-27 12:44:04 -070053 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 Milkeydc9b7912017-10-30 12:09:31 -070094 - shell: |
Ray Milkey11b3b242017-10-30 13:40:42 -070095 #!/bin/bash
Ray Milkey9f815652017-10-30 12:38:56 -070096 . tools/build/envDefaults
Ray Milkeydc9b7912017-10-30 12:09:31 -070097 echo $PATH
Ray Milkeyaba1d7c2017-10-30 12:02:24 -070098 onos-buck build onos
99 onos-buck test
100 onos-buck build //docs:external //docs:internal --show-output
Brian O'Connor9fbe7722017-10-27 12:44:04 -0700101
102
103- project:
104 name: onos
105 project-name: onos
106 project: onos
107
108 build-timeout: '1800'
109 build-node: 'ubuntu16.04-basebuild-8c-15g'
110
111 stream:
112 - 'master'
113
114 jobs:
115 - '{project-name}-{stream}-verify'