cloud-infra: Enable single-use slaves
[infra/cicd.git] / jjb / cloud-infra / cloud-infra-verify-scenario.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/swconfig
25 #
26 # These jobs verify changes that
27 #   - implement new scenarios or fix bugs in the existing scenarios
28 #
29 # These jobs are set to run on slaves with label vpod-deploy-ubuntu1604.
30 # The slaves have
31 #   - Ubuntu1604 as the base distro
32 #   - nested virtualization
33 #   - internet access
34 #   - passwordless sudo
35 #   - 16 CPUs/32GB RAM/200 GB Disk
36 #   - docker, git vim curl wget zip unzip chrony apt-transport-https ca-certificates curl
37 #     gnupg-agent software-properties-common docker-ce docker-ce-cli containerd.io openjdk-8-jre
38 #
39 # The slaves should not have a cloud infra scenario deployed on them.
40 #--------------------------------------------------------------------------------------
41
42 - project:
43     name: 'cloud-infra-verify-scenario'
44
45     project: 'infra/swconfig'
46
47     stream:
48       - 'master':
49           branch: '{stream}'
50
51     distro:
52       - ubuntu1804:
53           slave-label: vpod-deploy-ubuntu1804
54           disabled: false
55           successful: false
56           failed: false
57           unstable: false
58           notbuilt: false
59       - centos7:
60           slave-label: vpod-deploy-centos7
61           disabled: true
62           successful: true
63           failed: true
64           unstable: true
65           notbuilt: true
66
67     type:
68       - virtual
69
70     phase:
71       - deploy:
72           build-timeout: 60
73       - functest:
74           build-timeout: 30
75
76     jobs:
77       - 'cloud-infra-verify-scenario-{distro}-{type}-{stream}'
78       - 'cloud-infra-verify-scenario-{distro}-{phase}-{type}-{stream}'
79
80 - job-template:
81     name: 'cloud-infra-verify-scenario-{distro}-{type}-{stream}'
82
83     project-type: multijob
84
85     disabled: '{obj:disabled}'
86
87     concurrent: true
88
89     parameters:
90       - project-parameters:
91           project: '{project}'
92           branch: '{branch}'
93       - nordix-gerrit-parameters
94       - label:
95           name: SLAVE_LABEL
96           default: '{slave-label}'
97           description: 'Slave label to schedule this job on. All slaves have Ubuntu1604 no matter what distro target nodes use'
98       - string:
99           name: DISTRO
100           default: '{distro}'
101           description: 'Distribution to use for configuring target nodes (networking etc.)'
102       - string:
103           name: DEPLOY_TYPE
104           default: '{type}'
105           description: 'Type of the deployment'
106       - string:
107           name: USE_PREBUILT_DEPLOYMENT_IMAGE
108           default: 'true'
109           description: 'Use prebuilt deployment image while running as part of CI/CD'
110       - string:
111           name: TEST_SUITE
112           default: 'healthcheck'
113           description: 'Test suite to run'
114       - string:
115           name: CLEANUP
116           default: 'true'
117           description: 'Cleanup leftovers of the previous run'
118
119     properties:
120       - logrotate
121       - build-blocker:
122           use-build-blocker: true
123           blocking-jobs:
124             - 'cloud-infra-verify-engine-.*'
125             - 'cloud-infra-verify-scenario-.*'
126             - 'cloud-infra-periodic-engine-.*'
127             - 'k8-.*'
128           block-level: 'NODE'
129       - throttle:
130           max-per-node: 1
131           max-total: 3
132           option: project
133
134     wrappers:
135       - build-timeout:
136           timeout: 90
137       - fix-workspace-permissions
138       - openstack:
139           single-use: True
140
141     scm:
142       - git-scm-gerrit:
143           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
144           branch: '{branch}'
145           refspec: $GERRIT_REFSPEC
146           wipe_workspace: true
147           clean_before: false
148
149     triggers:
150       - nordix-gerrit-trigger-patchset-created:
151           project: 'infra\/swconfig'
152           branch: '{branch}'
153           files: '**'
154           custom-url: '* $JOB_NAME $BUILD_URL'
155           skip-vote:
156             successful: '{obj:successful}'
157             failed: '{obj:failed}'
158             unstable: '{obj:unstable}'
159             notbuilt: '{obj:notbuilt}'
160
161     builders:
162       - 'cloud-infra-determine-scenario-macro'
163       - multijob:
164           name: deploy
165           condition: SUCCESSFUL
166           projects:
167             - name: 'cloud-infra-verify-scenario-{distro}-deploy-{type}-{stream}'
168               current-parameters: true
169               predefined-parameters: |
170                 DISTRO=$DISTRO
171                 DEPLOY_TYPE=$DEPLOY_TYPE
172                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
173                 CLEANUP=$CLEANUP
174                 GERRIT_PROJECT=$GERRIT_PROJECT
175                 GERRIT_BRANCH=$GERRIT_BRANCH
176                 GERRIT_REFSPEC=$GERRIT_REFSPEC
177                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
178                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
179               node-parameters: true
180               kill-phase-on: FAILURE
181               abort-all-job: true
182       - multijob:
183           name: functest
184           condition: SUCCESSFUL
185           projects:
186             - name: 'cloud-infra-verify-scenario-{distro}-functest-{type}-{stream}'
187               current-parameters: true
188               predefined-parameters: |
189                 DISTRO=$DISTRO
190                 DEPLOY_TYPE=$DEPLOY_TYPE
191                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
192                 TEST_SUITE=$TEST_SUITE
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
203 - job-template:
204     name: 'cloud-infra-verify-scenario-{distro}-{phase}-{type}-{stream}'
205
206     disabled: false
207
208     concurrent: true
209
210     properties:
211       - logrotate
212
213     parameters:
214       - string:
215           name: PROJECT
216           default: $GERRIT_PROJECT
217       - string:
218           name: DISTRO
219           default: 'ubuntu1804'
220           description: 'Distribution to use for configuring target nodes (networking etc.). Overriden by upstream job.'
221       - string:
222           name: DEPLOY_TYPE
223           default: 'virtual'
224           description: 'Type of the deployment. Overriden by upstream job.'
225       - string:
226           name: USE_PREBUILT_DEPLOYMENT_IMAGE
227           default: 'false'
228           description: 'Use prebuilt deployment image while running as part of CI/CD'
229       - string:
230           name: TEST_FW
231           default: '{phase}'
232           description: 'Test framework to use'
233       - string:
234           name: TEST_SUITE
235           default: 'healthcheck'
236           description: 'Test suite to run'
237       - string:
238           name: ENGINE_REPO_URL
239           default: 'https://gerrit.nordix.org/infra/engine.git'
240           description: 'URL to Nordix Cloud Infra engine repository'
241       - string:
242           name: TEST_REPO_URL
243           default: 'https://gerrit.nordix.org/infra/test.git'
244           description: 'URL to Nordix Cloud Infra test repository'
245       - string:
246           name: CLEANUP
247           default: 'false'
248
249     wrappers:
250       - build-timeout:
251           timeout: '{build-timeout}'
252       - fix-workspace-permissions
253
254     scm:
255       - git-scm-gerrit:
256           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
257           branch: '{branch}'
258           refspec: $GERRIT_REFSPEC
259           wipe_workspace: true
260           clean_before: false
261
262     builders:
263       - 'cloud-infra-determine-scenario-macro'
264       - 'cloud-infra-scenario-{phase}-macro'
265
266 # vim: set ts=2 sw=2 expandtab: