summaryrefslogtreecommitdiffstats
path: root/jjb/integration/integration-templates-csit.yaml
blob: ae6f9f5589bec59ea02f09b15d42eaf9a652b8d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
---
- job-template:
    name: "{project-name}-{stream}-verify-csit-{functionality}"
    disabled: false

    project-type: freestyle
    build-node: "ubuntu1804-docker-8c-8g"
    node: "{build-node}"
    recipients: ""
    java-version: "openjdk11"
    python-version: python3

    properties:
      - lf-infra-properties:
          project: "integration/csit"
          build-days-to-keep: "{build-days-to-keep}"

    parameters:
      - infra-parameters:
          project: "integration/csit"
          branch: "{branch}"
          refspec: "refs/heads/{branch}"
          artifacts: "{archive-artifacts}"
      - integration-test-plan:
          test-plan: "plans/{project-name}/{functionality}"
      - integration-test-options:
          test-options: "{robot-options}"

    scm:
      - gerrit-trigger-scm:
          refspec: "$GERRIT_REFSPEC"
          choosing-strategy: "gerrit"
          submodule-recursive: "{submodule-recursive}"

    wrappers:
      - lf-infra-wrappers:
          build-timeout: "{build-timeout}"
          jenkins-ssh-credential: "{jenkins-ssh-credential}"

    triggers:
      - gerrit-trigger-patch-submitted:
          server: "{server-name}"
          project: "integration/csit"
          branch: "{branch}"
          files: "*/{project-name}/**"

    builders:
      - lf-update-java-alternatives:
          java-version: "{java-version}"
      - integration-install-robotframework-py3
      - inject:
          properties-file: "env.properties"
      - integration-run-test

    publishers:
      - integration-robot:
          unstable-if: 0.0
          pass-if: 100.0
      - lf-infra-publish
      - email:
          recipients: "{recipients}"
          notify-every-unstable-build: false
          send-to-individuals: true

- job-template:
    name: "{project-name}-{stream}-csit-{functionality}"
    disabled: false

    project-type: freestyle
    build-node: "ubuntu1804-docker-8c-8g"
    node: "{build-node}"
    recipients: ""
    java-version: "openjdk11"
    python-version: python3

    properties:
      - lf-infra-properties:
          project: "integration/csit"
          build-days-to-keep: "{build-days-to-keep}"

    parameters:
      - infra-parameters:
          project: "integration/csit"
          branch: "{branch}"
          refspec: "refs/heads/{branch}"
          artifacts: "{archive-artifacts}"
      - integration-test-plan:
          test-plan: "plans/{project-name}/{functionality}"
      - integration-test-options:
          test-options: "{robot-options}"

    scm:
      - gerrit-trigger-scm:
          refspec: ""
          choosing-strategy: "default"
          submodule-recursive: "{submodule-recursive}"

    wrappers:
      - lf-infra-wrappers:
          build-timeout: "{build-timeout}"
          jenkins-ssh-credential: "{jenkins-ssh-credential}"

    triggers:
      - gerrit-trigger-patch-merged:
          server: "{server-name}"
          project: "integration/csit"
          branch: "{branch}"
          files: "*/{project-name}/**"
      - timed: "@daily"
      - reverse:
          jobs: "{obj:trigger_jobs}"

    builders:
      - lf-infra-pre-build
      - lf-update-java-alternatives:
          java-version: "{java-version}"
      - integration-install-robotframework-py3
      - inject:
          properties-file: "env.properties"
      - integration-run-test

    publishers:
      - integration-robot:
          unstable-if: 0.0
          pass-if: 100.0
      - lf-infra-publish
      - email:
          recipients: "{recipients}"
          notify-every-unstable-build: false
          send-to-individuals: true

- _verification_maven_job_boiler_plate: &verification_maven_job_boiler_plate
    name: verification_maven_job_boiler_plate

    ######################
    # Default parameters #
    ######################

    branch: master
    build-concurrent: false
    build-days-to-keep: 30 # 30 days in case a release takes long to get approved.
    build-node: ubuntu1804-docker-8c-8g
    build-timeout: 60
    container-public-registry: "nexus3.onap.org:10001"
    git-url: "$GIT_URL/$PROJECT"
    github-url: "https://github.com"
    maven-versions-plugin: false
    version-properties-file: version.properties
    mvn-central: false
    mvn-global-settings: global-settings
    mvn-goals: clean deploy
    mvn-opts: ""
    mvn-pom: ""
    mvn-version: mvn36
    stream: master
    submodule-recursive: true
    submodule-timeout: 10
    submodule-disable: false

    disabled: false
    archive-artifacts: >
      **/*.log
      **/hs_err_*.log
      **/target/**/feature.xml
      **/target/failsafe-reports/failsafe-summary.xml
      **/target/surefire-reports/*-output.txt

    project-type: freestyle
    node: "{build-node}"
    java-version: "openjdk11"

    #####################
    # Job Configuration #
    #####################
    concurrent: "{build-concurrent}"
    properties:
      - lf-infra-properties:
          project: "{project}"
          build-days-to-keep: "{build-days-to-keep}"
    parameters:
      - infra-parameters:
          project: "{project}"
          branch: "{branch}"
          refspec: "refs/heads/{branch}"
          artifacts: "{archive-artifacts}"
      - lf-infra-maven-parameters:
          mvn-opts: "{mvn-opts}"
          mvn-params: "{mvn-params}"
          mvn-version: "{mvn-version}"
      - string:
          name: ARCHIVE_ARTIFACTS
          default: "{archive-artifacts}"
          description: Artifacts to archive to the logs server.
      - integration-test-options:
          test-options: "{robot-options}"
    wrappers:
      - lf-infra-wrappers:
          build-timeout: "{build-timeout}"
          jenkins-ssh-credential: "{jenkins-ssh-credential}"
    builders:
      - lf-infra-pre-build
      - lf-jacoco-nojava-workaround
      - lf-maven-install:
          mvn-version: "{mvn-version}"
      - lf-update-java-alternatives:
          java-version: "{java-version}"
      - lf-infra-docker-login:
          global-settings-file: "{mvn-global-settings}"
          settings-file: "{mvn-settings}"
      # must provide maven settings AFTER docker-login due to its cleanup
      - lf-provide-maven-settings:
          global-settings-file: "{mvn-global-settings}"
          settings-file: "{mvn-settings}"
      - lf-maven-versions-plugin:
          maven-versions-plugin: "{maven-versions-plugin}"
          version-properties-file: "{version-properties-file}"
          mvn-version: "{mvn-version}"
          mvn-pom: "{mvn-pom}"
          mvn-settings: "{mvn-settings}"
      - inject:
          properties-content: |
            CONTAINER_PULL_REGISTRY={container-public-registry}
      - lf-maven-build:
          mvn-goals: "{mvn-goals}"
      - integration-install-robotframework-py3
      - inject:
          properties-file: "env.properties"
      - integration-run-project-test
      - lf-provide-maven-settings-cleanup
    publishers:
      - integration-project-robot:
          unstable-if: 0.0
          pass-if: 100.0
      - lf-infra-publish
      - email:
          recipients: "{recipients}"
          notify-every-unstable-build: false
          send-to-individuals: true

- job-template:
    # Job template for unified review verification jobs in
    # project-specific CSIT flow for projects built with maven
    #
    # The purpose of this job template is to:
    #  1. build local snapshot docker images with maven
    #  2. run CSIT job with the local images
    #  3. give a verify vote to the triggering review
    #

    name: "{project-name}-review-verification-maven-{stream}"

    <<: *verification_maven_job_boiler_plate

    scm:
      - gerrit-trigger-scm:
          refspec: "$GERRIT_REFSPEC"
          choosing-strategy: "gerrit"
          submodule-recursive: "{submodule-recursive}"
    triggers:
      - gerrit-trigger-patch-submitted:
          server: "{server-name}"
          project: "{project}"
          branch: "{branch}"
          files: "**"

- job-template:
    # Job template for unified merge verification jobs in
    # project-specific CSIT flow for projects built with maven
    #
    # The purpose of this job template is to:
    #  1. build local snapshot docker images from master with maven
    #  2. run CSIT job with the local images
    #

    name: "{project-name}-merge-verification-maven-{stream}"

    <<: *verification_maven_job_boiler_plate

    scm:
      - gerrit-trigger-scm:
          refspec: ""
          choosing-strategy: "default"
          submodule-recursive: "{submodule-recursive}"
    triggers:
      - gerrit-trigger-patch-merged:
          server: "{server-name}"
          project: "{project}"
          branch: "{branch}"
          files: "**"