Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 1 | --- |
| 2 | # vim: sw=2 ts=2 sts=2 et : |
| 3 | |
lj1412 | f75ed99 | 2017-02-17 22:21:06 +0000 | [diff] [blame] | 4 | - job-template: |
Konrad Bańka | 67a1ef1 | 2019-09-09 17:02:25 +0200 | [diff] [blame] | 5 | # |
| 6 | # job template for verifying gerrit changeset by shell script |
| 7 | # |
| 8 | # Required Variables: |
| 9 | # project-name: name of project |
| 10 | # area: area of project covered with this verification job |
| 11 | # project: name of scm repository to work on |
| 12 | # stream: name of stream used (set the same as branch if you're not sure) |
| 13 | # branch: git branch to work on |
| 14 | # script: build script to execute |
| 15 | # Optional Variables: |
| 16 | # pattern: trigger job only if modification covered file in pattern |
| 17 | # build-node: label(flavor) of jenkins slave |
| 18 | name: '{project-name}-{stream}-{area}-verify-shell' |
| 19 | node: '{build-node}' |
| 20 | type: freestyle |
Konrad Bańka | c5b8722 | 2020-04-22 14:00:37 +0200 | [diff] [blame] | 21 | concurrent: true |
Konrad Bańka | 67a1ef1 | 2019-09-09 17:02:25 +0200 | [diff] [blame] | 22 | |
| 23 | pattern: '**' |
| 24 | |
| 25 | parameters: |
| 26 | - lf-infra-parameters: |
| 27 | branch: '{branch}' |
| 28 | project: '{project}' |
| 29 | stream: '{stream}' |
| 30 | lftools-version: '{lftools-version}' |
| 31 | |
| 32 | scm: |
| 33 | - gerrit-trigger-scm: |
| 34 | refspec: '$GERRIT_REFSPEC' |
| 35 | submodule-recursive: '{submodule-recursive}' |
| 36 | choosing-strategy: 'gerrit' |
| 37 | |
| 38 | triggers: |
| 39 | - gerrit-trigger-patch-submitted: |
| 40 | server: '{server-name}' |
| 41 | project: '{project}' |
| 42 | branch: '{branch}' |
| 43 | files: '{pattern}' |
| 44 | |
Konrad Bańka | cd7d09e | 2020-04-21 18:20:23 +0200 | [diff] [blame] | 45 | wrappers: |
| 46 | - infra-wrappers: |
| 47 | build-timeout: '{build-timeout}' |
| 48 | |
Konrad Bańka | 67a1ef1 | 2019-09-09 17:02:25 +0200 | [diff] [blame] | 49 | builders: |
| 50 | - shell: '{script}' |
| 51 | |
| 52 | publishers: |
| 53 | - lf-infra-publish |
| 54 | |
| 55 | - job-template: |
Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 56 | # Job template for 2 scm and script trigger |
| 57 | # |
| 58 | # Required Variables: |
| 59 | # branch: git branch |
| 60 | # build-node: what build node to run on |
| 61 | # script: build script to execute |
| 62 | # extra-project: extra gerrit project to checkout |
| 63 | # extra-refspec: refspec for the extra project |
| 64 | # extra-branch: branch to checkout for the extra project |
| 65 | # checkout-dir: directory to checkout the extra project to |
| 66 | # DO NOT SET THIS TO anything that translates to |
| 67 | # $WORKSPACE as it will destroy the initial |
| 68 | # project checkout |
| 69 | |
Andrew Grimberg | ec9a1bf | 2017-02-16 09:56:57 -0800 | [diff] [blame] | 70 | name: '{project-name}-{stream}-two-scm-verify-script' |
Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 71 | |
| 72 | project-type: freestyle |
| 73 | concurrent: true |
| 74 | node: '{build-node}' |
| 75 | |
| 76 | properties: |
Andrew Grimberg | 4307a1c | 2017-03-16 13:00:00 -0700 | [diff] [blame] | 77 | - infra-properties: |
Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 78 | build-days-to-keep: '{build-days-to-keep}' |
| 79 | |
| 80 | parameters: |
Andrew Grimberg | 4307a1c | 2017-03-16 13:00:00 -0700 | [diff] [blame] | 81 | - infra-parameters: |
Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 82 | project: '{project}' |
| 83 | branch: '{branch}' |
| 84 | refspec: 'refs/heads/{branch}' |
| 85 | artifacts: '{archive-artifacts}' |
Andrew Grimberg | ab9451c | 2017-02-20 14:57:07 -0800 | [diff] [blame] | 86 | - maven-exec: |
Andrew Grimberg | e246588 | 2017-02-24 12:38:05 -0800 | [diff] [blame] | 87 | maven-version: '{maven-version}' |
Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 88 | |
| 89 | scm: |
| 90 | - gerrit-trigger-scm: |
| 91 | refspec: '$GERRIT_REFSPEC' |
| 92 | choosing-strategy: 'gerrit' |
Jeremy Phelps | 11f5d41 | 2017-06-30 13:56:19 -0500 | [diff] [blame] | 93 | submodule-recursive: '{submodule-recursive}' |
Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 94 | - git-extra-project: |
| 95 | project: '{extra-project}' |
| 96 | refspec: '{extra-refspec}' |
| 97 | branch: '{extra-branch}' |
| 98 | checkout-dir: '{checkout-dir}' |
| 99 | |
| 100 | wrappers: |
Andrew Grimberg | 4307a1c | 2017-03-16 13:00:00 -0700 | [diff] [blame] | 101 | - infra-wrappers: |
Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 102 | build-timeout: '{build-timeout}' |
| 103 | |
| 104 | triggers: |
| 105 | - gerrit-trigger-patch-submitted: |
| 106 | server: '{server-name}' |
| 107 | project: '{project}' |
| 108 | branch: '{branch}' |
| 109 | files: '**' |
| 110 | |
| 111 | builders: |
Jessica Wagantall | 05ae7da | 2018-10-22 17:32:33 -0700 | [diff] [blame] | 112 | - lf-infra-pre-build |
Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 113 | - provide-maven-settings: |
| 114 | global-settings-file: 'global-settings' |
| 115 | settings-file: '{mvn-settings}' |
| 116 | # make sure maven gets installed / setup |
| 117 | - maven-target: |
Andrew Grimberg | e246588 | 2017-02-24 12:38:05 -0800 | [diff] [blame] | 118 | maven-version: '{maven-version}' |
Andrew Grimberg | 1ac7c2d | 2017-02-08 12:40:56 -0800 | [diff] [blame] | 119 | goals: '--version' |
| 120 | settings: '{mvn-settings}' |
| 121 | settings-type: cfp |
| 122 | global-settings: 'global-settings' |
| 123 | global-settings-type: cfp |
| 124 | - shell: '{script}' |
| 125 | |
Andrew Grimberg | 4ecb8f2 | 2017-04-06 13:57:46 -0700 | [diff] [blame] | 126 | publishers: |
| 127 | - infra-shiplogs: |
| 128 | maven-version: '{maven-version}' |
talasila | 91a608b | 2017-02-16 12:46:32 -0500 | [diff] [blame] | 129 | |
| 130 | |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 131 | |
| 132 | # vim: sw=2 ts=2 sts=2 et : |
| 133 | |
| 134 | - job-template: |
Christopher Lott (cl778h) | 6b6ae12 | 2017-10-25 16:51:02 -0400 | [diff] [blame] | 135 | # Job template for two scm and script trigger - for docker merge |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 136 | # |
| 137 | # Required Variables: |
| 138 | # branch: git branch |
| 139 | # build-node: what build node to run on |
| 140 | # script: build script to execute |
| 141 | |
Christopher Lott (cl778h) | 6b6ae12 | 2017-10-25 16:51:02 -0400 | [diff] [blame] | 142 | name: '{project-name}-{stream}-two-scm-merge-docker-script' |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 143 | |
| 144 | project-type: freestyle |
| 145 | concurrent: true |
| 146 | node: '{build-node}' |
| 147 | |
| 148 | properties: |
Andrew Grimberg | 4307a1c | 2017-03-16 13:00:00 -0700 | [diff] [blame] | 149 | - infra-properties: |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 150 | build-days-to-keep: '{build-days-to-keep}' |
| 151 | |
| 152 | parameters: |
Andrew Grimberg | 4307a1c | 2017-03-16 13:00:00 -0700 | [diff] [blame] | 153 | - infra-parameters: |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 154 | project: '{project}' |
| 155 | branch: '{branch}' |
| 156 | refspec: 'refs/heads/{branch}' |
| 157 | artifacts: '{archive-artifacts}' |
| 158 | - maven-exec: |
Andrew Grimberg | e246588 | 2017-02-24 12:38:05 -0800 | [diff] [blame] | 159 | maven-version: '{maven-version}' |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 160 | |
| 161 | scm: |
| 162 | - gerrit-trigger-scm: |
| 163 | refspec: '' |
| 164 | choosing-strategy: 'default' |
Jeremy Phelps | 11f5d41 | 2017-06-30 13:56:19 -0500 | [diff] [blame] | 165 | submodule-recursive: '{submodule-recursive}' |
talasila | 596787c | 2017-02-19 20:47:56 -0500 | [diff] [blame] | 166 | - git-extra-project: |
Christopher Lott (cl778h) | 6b6ae12 | 2017-10-25 16:51:02 -0400 | [diff] [blame] | 167 | project: '{extra-project}' |
| 168 | refspec: '{extra-refspec}' |
| 169 | branch: '{extra-branch}' |
| 170 | checkout-dir: '{checkout-dir}' |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 171 | |
| 172 | wrappers: |
Andrew Grimberg | 4307a1c | 2017-03-16 13:00:00 -0700 | [diff] [blame] | 173 | - infra-wrappers: |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 174 | build-timeout: '{build-timeout}' |
| 175 | |
| 176 | triggers: |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 177 | - gerrit-trigger-patch-merged: |
| 178 | server: '{server-name}' |
| 179 | project: '{project}' |
| 180 | branch: '{branch}' |
| 181 | files: '**' |
| 182 | |
| 183 | builders: |
Jessica Wagantall | 05ae7da | 2018-10-22 17:32:33 -0700 | [diff] [blame] | 184 | - lf-infra-pre-build |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 185 | - provide-maven-settings: |
| 186 | global-settings-file: 'global-settings' |
| 187 | settings-file: '{mvn-settings}' |
| 188 | - docker-login |
| 189 | # make sure maven gets installed / setup |
| 190 | - maven-target: |
Andrew Grimberg | e246588 | 2017-02-24 12:38:05 -0800 | [diff] [blame] | 191 | maven-version: '{maven-version}' |
talasila | 714fdfa | 2017-02-19 09:30:55 -0500 | [diff] [blame] | 192 | goals: '--version' |
| 193 | settings: '{mvn-settings}' |
| 194 | settings-type: cfp |
| 195 | global-settings: 'global-settings' |
| 196 | global-settings-type: cfp |
| 197 | - shell: '{script}' |
| 198 | |
Andrew Grimberg | 4ecb8f2 | 2017-04-06 13:57:46 -0700 | [diff] [blame] | 199 | publishers: |
| 200 | - infra-shiplogs: |
| 201 | maven-version: '{maven-version}' |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 202 | |
| 203 | - job-template: |
Christopher Lott (cl778h) | 6b6ae12 | 2017-10-25 16:51:02 -0400 | [diff] [blame] | 204 | # Job template for two scm and script trigger - for docker daily release |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 205 | # |
| 206 | # Required Variables: |
| 207 | # branch: git branch |
| 208 | # build-node: what build node to run on |
| 209 | # script: build script to execute |
| 210 | |
Christopher Lott (cl778h) | 6b6ae12 | 2017-10-25 16:51:02 -0400 | [diff] [blame] | 211 | name: '{project-name}-{stream}-two-scm-release-docker-script-manual' |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 212 | |
| 213 | project-type: freestyle |
| 214 | concurrent: true |
| 215 | node: '{build-node}' |
| 216 | |
| 217 | properties: |
Andrew Grimberg | 4307a1c | 2017-03-16 13:00:00 -0700 | [diff] [blame] | 218 | - infra-properties: |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 219 | build-days-to-keep: '{build-days-to-keep}' |
| 220 | |
| 221 | parameters: |
Andrew Grimberg | 4307a1c | 2017-03-16 13:00:00 -0700 | [diff] [blame] | 222 | - infra-parameters: |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 223 | project: '{project}' |
| 224 | branch: '{branch}' |
| 225 | refspec: 'refs/heads/{branch}' |
| 226 | artifacts: '{archive-artifacts}' |
| 227 | - maven-exec: |
Andrew Grimberg | e246588 | 2017-02-24 12:38:05 -0800 | [diff] [blame] | 228 | maven-version: '{maven-version}' |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 229 | |
| 230 | scm: |
| 231 | - gerrit-trigger-scm: |
| 232 | refspec: '' |
| 233 | choosing-strategy: 'default' |
Jeremy Phelps | 11f5d41 | 2017-06-30 13:56:19 -0500 | [diff] [blame] | 234 | submodule-recursive: '{submodule-recursive}' |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 235 | - git-extra-project: |
Christopher Lott (cl778h) | 6b6ae12 | 2017-10-25 16:51:02 -0400 | [diff] [blame] | 236 | project: '{extra-project}' |
| 237 | refspec: '{extra-refspec}' |
| 238 | branch: '{extra-branch}' |
| 239 | checkout-dir: '{checkout-dir}' |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 240 | |
| 241 | wrappers: |
Andrew Grimberg | 4307a1c | 2017-03-16 13:00:00 -0700 | [diff] [blame] | 242 | - infra-wrappers: |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 243 | build-timeout: '{build-timeout}' |
| 244 | |
| 245 | triggers: |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 246 | - gerrit-trigger-release-manually: |
| 247 | server: '{server-name}' |
| 248 | project: '{project}' |
| 249 | branch: '{branch}' |
| 250 | |
| 251 | builders: |
Jessica Wagantall | 05ae7da | 2018-10-22 17:32:33 -0700 | [diff] [blame] | 252 | - lf-infra-pre-build |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 253 | - provide-maven-settings: |
| 254 | global-settings-file: 'global-settings' |
| 255 | settings-file: '{mvn-settings}' |
| 256 | - docker-login |
| 257 | # make sure maven gets installed / setup |
| 258 | - maven-target: |
Andrew Grimberg | e246588 | 2017-02-24 12:38:05 -0800 | [diff] [blame] | 259 | maven-version: '{maven-version}' |
talasila | a20f8bf | 2017-02-22 10:49:54 -0500 | [diff] [blame] | 260 | goals: '--version' |
| 261 | settings: '{mvn-settings}' |
| 262 | settings-type: cfp |
| 263 | global-settings: 'global-settings' |
| 264 | global-settings-type: cfp |
| 265 | - shell: '{script}' |
| 266 | |
Andrew Grimberg | 4ecb8f2 | 2017-04-06 13:57:46 -0700 | [diff] [blame] | 267 | publishers: |
| 268 | - infra-shiplogs: |
| 269 | maven-version: '{maven-version}' |