cloud-infra: Reconfigure slave labels
[infra/cicd.git] / jjb / cloud-infra / cloud-infra-verify-engine.yaml
1 ---
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2019 Nordix Foundation.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20
21 #--------------------------------------------------------------------------------------
22 # The jobs declared in this JJB configuration file are used for verifying patches
23 # that are sent to the repositories below
24 #   - cloud-infra/engine
25 #
26 # These jobs verify changes that
27 #   - implement new features or fix bugs for the deployment framework, engine, itself
28 #   - implement new features or fix bugs to the playbooks and roles used for utilizing
29 #     open source components such as bifrost, kubespray, and kolla-ansible
30 #   - bump versions of open source components or the scenarios
31 #
32 # These jobs are set to run on slaves with label vpod-deploy-ubuntu1604.
33 # The slaves have
34 #   - Ubuntu1604 as the base distro
35 #   - nested virtualization
36 #   - internet access
37 #   - passwordless sudo
38 #   - 16 CPUs/32GB RAM/200 GB Disk
39 #   - docker, git vim curl wget zip unzip chrony apt-transport-https ca-certificates curl
40 #     gnupg-agent software-properties-common docker-ce docker-ce-cli containerd.io openjdk-8-jre
41 #
42 # The slaves should not have a cloud infra scenario deployed on them.
43 #--------------------------------------------------------------------------------------
44
45 - project:
46     name: 'cloud-infra-verify-engine'
47
48     project: 'infra/engine'
49
50     stream:
51       - 'master':
52           branch: '{stream}'
53
54     distro:
55       - ubuntu1804:
56           slave-label: vpod-deploy-ubuntu1804
57           disabled: false
58           successful: false
59           failed: false
60           unstable: false
61           notbuilt: false
62       - centos7:
63           slave-label: vpod-deploy-centos7
64           disabled: true
65           successful: true
66           failed: true
67           unstable: true
68           notbuilt: true
69
70     type:
71       - virtual
72
73     phase:
74       - deploy
75       - functest
76
77     jobs:
78       - 'cloud-infra-verify-engine-{distro}-{type}-{stream}'
79       - 'cloud-infra-verify-engine-{distro}-{phase}-{type}-{stream}'
80
81 - job-template:
82     name: 'cloud-infra-verify-engine-{distro}-{type}-{stream}'
83
84     project-type: multijob
85
86     disabled: '{obj:disabled}'
87
88     concurrent: true
89
90     parameters:
91       - project-parameters:
92           project: '{project}'
93           branch: '{branch}'
94       - nordix-gerrit-parameters
95       - label:
96           name: SLAVE_LABEL
97           default: '{slave-label}'
98           description: 'Slave label to schedule this job on. All slaves have Ubuntu1604 no matter what distro target nodes use'
99       - string:
100           name: DISTRO
101           default: '{distro}'
102           description: 'Distribution to use for configuring target nodes (networking etc.)'
103       - string:
104           name: DEPLOY_TYPE
105           default: '{type}'
106           description: 'Type of the deployment'
107       - string:
108           name: USE_PREBUILT_DEPLOYMENT_IMAGE
109           default: 'true'
110           description: 'Use prebuilt deployment image while running as part of CI/CD'
111       - string:
112           name: TEST_SUITE
113           default: 'healthcheck'
114           description: 'Test suite to run'
115       - string:
116           name: YARDSTICK_DISPATCHER
117           default: 'file'
118           description: 'Dispatcher to use for Yardstick reporting'
119       - string:
120           name: CLEANUP
121           default: 'true'
122           description: 'Cleanup leftovers of the previous run'
123
124     properties:
125       - logrotate
126       - build-blocker:
127           use-build-blocker: true
128           blocking-jobs:
129             - 'cloud-infra-verify-engine-.*'
130             - 'cloud-infra-verify-scenario-.*'
131             - 'cloud-infra-periodic-engine-.*'
132             - 'k8-.*'
133           block-level: 'NODE'
134       - throttle:
135           max-per-node: 1
136           max-total: 3
137           option: project
138
139     wrappers:
140       - build-timeout:
141           timeout: 120
142       - fix-workspace-permissions
143
144     scm:
145       - git-scm-gerrit:
146           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
147           branch: '{branch}'
148           refspec: $GERRIT_REFSPEC
149           wipe_workspace: true
150           clean_before: false
151
152     triggers:
153       - gerrit:
154           server-name: 'Nordix Gerrit'
155           trigger-on:
156             - patchset-created-event:
157                 exclude-drafts: 'false'
158                 exclude-trivial-rebase: 'false'
159                 exclude-no-code-change: 'false'
160             - draft-published-event
161             - comment-added-contains-event:
162                 comment-contains-value: 'recheck'
163             - comment-added-contains-event:
164                 comment-contains-value: 'reverify'
165           projects:
166             - project-compare-type: 'REG_EXP'
167               project-pattern: 'infra\/engine'
168               branches:
169                 - branch-compare-type: 'ANT'
170                   branch-pattern: '**/{branch}'
171               file-paths:
172                 - compare-type: 'ANT'
173                   pattern: '**'
174           skip-vote:
175             successful: '{obj:successful}'
176             failed: '{obj:failed}'
177             unstable: '{obj:unstable}'
178             notbuilt: '{obj:notbuilt}'
179           custom-url: '* $JOB_NAME $BUILD_URL'
180
181     builders:
182       - 'cloud-infra-determine-scenario-macro'
183       - multijob:
184           name: deploy
185           condition: SUCCESSFUL
186           projects:
187             - name: 'cloud-infra-verify-engine-{distro}-deploy-{type}-{stream}'
188               current-parameters: true
189               predefined-parameters: |
190                 DISTRO=$DISTRO
191                 DEPLOY_TYPE=$DEPLOY_TYPE
192                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
193                 CLEANUP=$CLEANUP
194                 GERRIT_PROJECT=$GERRIT_PROJECT
195                 GERRIT_BRANCH=$GERRIT_BRANCH
196                 GERRIT_REFSPEC=$GERRIT_REFSPEC
197                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
198                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
199               node-parameters: true
200               kill-phase-on: FAILURE
201               abort-all-job: true
202       - multijob:
203           name: functest
204           condition: SUCCESSFUL
205           projects:
206             - name: 'cloud-infra-verify-engine-{distro}-functest-{type}-{stream}'
207               current-parameters: true
208               predefined-parameters: |
209                 DISTRO=$DISTRO
210                 DEPLOY_TYPE=$DEPLOY_TYPE
211                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
212                 TEST_SUITE=$TEST_SUITE
213                 YARDSTICK_DISPATCHER=$YARDSTICK_DISPATCHER
214                 CLEANUP=$CLEANUP
215                 GERRIT_PROJECT=$GERRIT_PROJECT
216                 GERRIT_BRANCH=$GERRIT_BRANCH
217                 GERRIT_REFSPEC=$GERRIT_REFSPEC
218                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
219                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
220               node-parameters: true
221               kill-phase-on: FAILURE
222               abort-all-job: true
223
224 - job-template:
225     name: 'cloud-infra-verify-engine-{distro}-{phase}-{type}-{stream}'
226
227     disabled: false
228
229     concurrent: true
230
231     properties:
232       - logrotate
233
234     parameters:
235       - string:
236           name: PROJECT
237           default: $GERRIT_PROJECT
238       - string:
239           name: DISTRO
240           default: 'ubuntu1804'
241           description: 'Distribution to use for configuring target nodes (networking etc.). Overriden by upstream job.'
242       - string:
243           name: DEPLOY_TYPE
244           default: 'virtual'
245           description: 'Type of the deployment. Overriden by upstream job.'
246       - string:
247           name: USE_PREBUILT_DEPLOYMENT_IMAGE
248           default: 'false'
249           description: 'Use prebuilt deployment image while running as part of CI/CD'
250       - string:
251           name: TEST_FW
252           default: '{phase}'
253           description: 'Test framework to use'
254       - string:
255           name: TEST_SUITE
256           default: 'healthcheck'
257           description: 'Test suite to run'
258       - string:
259           name: TEST_REPO_URL
260           default: 'https://gerrit.nordix.org/infra/test.git'
261           description: 'URL to Nordix Cloud Infra test repository'
262       - string:
263           name: YARDSTICK_DISPATCHER
264           default: 'file'
265           description: 'Dispatcher to use for Yardstick reporting'
266       - string:
267           name: CLEANUP
268           default: 'false'
269
270     wrappers:
271       - build-timeout:
272           timeout: 120
273       - fix-workspace-permissions
274
275     scm:
276       - git-scm-gerrit:
277           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
278           branch: '{branch}'
279           refspec: $GERRIT_REFSPEC
280           wipe_workspace: true
281           clean_before: false
282
283     builders:
284       - 'cloud-infra-determine-scenario-macro'
285       - 'cloud-infra-{phase}-macro'
286
287 # vim: set ts=2 sw=2 expandtab: