fa473125e8eea728488b3007de27639d465c1f67
[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           disabled: 'false'
51
52     os:
53       - ubuntu1804:
54           disabled: 'false'
55           distribution: 'ubuntu18'
56           ipa_dib_os_element: 'coreos'
57           dib_os_release: 'bionic'
58           dib_os_element: 'ubuntu-minimal'
59
60     type:
61       - virtual:
62           slave-label: 'vpod-deploy-city'
63
64     phase:
65       - deploy:
66           build-timeout: 60
67       - functest:
68           build-timeout: 30
69
70     jobs:
71       - 'cloud-infra-verify-scenario-{os}-{type}-{stream}'
72       - 'cloud-infra-verify-scenario-{os}-{phase}-{type}-{stream}'
73
74 - job-template:
75     name: 'cloud-infra-verify-scenario-{os}-{type}-{stream}'
76
77     project-type: multijob
78
79     disabled: '{obj:disabled}'
80
81     concurrent: true
82
83     parameters:
84       - project-parameters:
85           project: '{project}'
86           branch: '{branch}'
87       - nordix-gerrit-parameters
88       - label:
89           name: SLAVE_LABEL
90           default: '{slave-label}'
91           description: 'Slave label to schedule this job on. All slaves have Ubuntu1604 no matter what distro target nodes use'
92       - string:
93           name: DISTRIBUTION
94           default: '{distribution}'
95           description: 'Distribution to use for configuring target nodes (networking etc.)'
96       - string:
97           name: DEPLOY_TYPE
98           default: '{type}'
99           description: 'Type of the deployment'
100       - string:
101           name: USE_PREBUILT_DEPLOYMENT_IMAGE
102           default: 'true'
103           description: 'Use prebuilt deployment image while running as part of CI/CD'
104       - string:
105           name: IPA_DIB_OS_ELEMENT
106           default: '{ipa_dib_os_element}'
107           description: 'DIB OS Element to use for building the ramdisk image'
108       - string:
109           name: DIB_OS_RELEASE
110           default: '{dib_os_release}'
111           description: 'DIB OS Release to use for building the deployment image to provision target nodes with'
112       - string:
113           name: DIB_OS_ELEMENT
114           default: '{dib_os_element}'
115           description: 'DIB OS Element to use for building the deployment image to provision target nodes with'
116       - string:
117           name: TEST_SUITE
118           default: 'healthcheck'
119           description: 'Test suite to run'
120       - string:
121           name: CLEANUP
122           default: 'true'
123           description: 'Cleanup leftovers of the previous run'
124
125     properties:
126       - logrotate
127       - build-blocker:
128           use-build-blocker: true
129           blocking-jobs:
130             - 'cloud-infra-verify-engine-{os}-.*'
131             - 'cloud-infra-verify-scenario-{os}-.*'
132             - 'cloud-infra-periodic-engine-{os}-.*'
133             - 'cloud-infra-os-.*'
134             - 'cloud-infra-k8-.*'
135           block-level: 'NODE'
136       - throttle:
137           max-per-node: 1
138           max-total: 3
139           option: project
140
141     wrappers:
142       - build-timeout:
143           timeout: 90
144       - fix-workspace-permissions
145
146     scm:
147       - git-scm-gerrit:
148           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
149           branch: '{branch}'
150           refspec: $GERRIT_REFSPEC
151
152     triggers:
153       - nordix-gerrit-trigger-patchset-created:
154           project: 'infra\/swconfig'
155           branch: '{branch}'
156           files: '**'
157
158     builders:
159       - 'cloud-infra-determine-scenario-macro'
160       - multijob:
161           name: deploy
162           condition: SUCCESSFUL
163           projects:
164             - name: 'cloud-infra-verify-scenario-{os}-deploy-{type}-{stream}'
165               current-parameters: true
166               predefined-parameters: |
167                 DISTRIBUTION=$DISTRIBUTION
168                 DEPLOY_TYPE=$DEPLOY_TYPE
169                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
170                 IPA_DIB_OS_ELEMENT=$IPA_DIB_OS_ELEMENT
171                 DIB_OS_RELEASE=$DIB_OS_RELEASE
172                 DIB_OS_ELEMENT=$DIB_OS_ELEMENT
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-{os}-functest-{type}-{stream}'
187               current-parameters: true
188               predefined-parameters: |
189                 DISTRIBUTION=$DISTRIBUTION
190                 DEPLOY_TYPE=$DEPLOY_TYPE
191                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
192                 IPA_DIB_OS_ELEMENT=$IPA_DIB_OS_ELEMENT
193                 DIB_OS_RELEASE=$DIB_OS_RELEASE
194                 DIB_OS_ELEMENT=$DIB_OS_ELEMENT
195                 TEST_SUITE=$TEST_SUITE
196                 CLEANUP=$CLEANUP
197                 GERRIT_PROJECT=$GERRIT_PROJECT
198                 GERRIT_BRANCH=$GERRIT_BRANCH
199                 GERRIT_REFSPEC=$GERRIT_REFSPEC
200                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
201                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
202               node-parameters: true
203               kill-phase-on: FAILURE
204               abort-all-job: true
205
206 - job-template:
207     name: 'cloud-infra-verify-scenario-{os}-{phase}-{type}-{stream}'
208
209     disabled: false
210
211     concurrent: true
212
213     properties:
214       - logrotate
215
216     parameters:
217       - string:
218           name: PROJECT
219           default: $GERRIT_PROJECT
220       - string:
221           name: DISTRIBUTION
222           default: 'ubuntu18'
223           description: 'Distribution to use for configuring target nodes (networking etc.). Overriden by upstream job.'
224       - string:
225           name: DEPLOY_TYPE
226           default: 'virtual'
227           description: 'Type of the deployment. Overriden by upstream job.'
228       - string:
229           name: USE_PREBUILT_DEPLOYMENT_IMAGE
230           default: 'false'
231           description: 'Use prebuilt deployment image while running as part of CI/CD'
232       - string:
233           name: IPA_DIB_OS_ELEMENT
234           default: 'fedora'
235           description: 'DIB OS Element to use for building the ramdisk image. Overriden by upstream job.'
236       - string:
237           name: DIB_OS_RELEASE
238           default: 'bionic'
239           description: 'DIB OS Release to use for building the deployment image to provision target nodes with. Overriden by upstream job.'
240       - string:
241           name: DIB_OS_ELEMENT
242           default: 'ubuntu-minimal'
243           description: 'DIB OS Element to use for building the deployment image to provision target nodes with. Overriden by upstream job.'
244       - string:
245           name: TEST_FW
246           default: '{phase}'
247           description: 'Test framework to use'
248       - string:
249           name: TEST_SUITE
250           default: 'healthcheck'
251           description: 'Test suite to run'
252       - string:
253           name: ENGINE_REPO_URL
254           default: 'https://gerrit.nordix.org/infra/engine.git'
255           description: 'URL to Nordix Cloud Infra engine repository'
256       - string:
257           name: TEST_REPO_URL
258           default: 'https://gerrit.nordix.org/infra/test.git'
259           description: 'URL to Nordix Cloud Infra test repository'
260       - string:
261           name: CLEANUP
262           default: 'false'
263
264     wrappers:
265       - build-timeout:
266           timeout: '{build-timeout}'
267       - fix-workspace-permissions
268
269     scm:
270       - git-scm-gerrit:
271           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
272           branch: '{branch}'
273           refspec: $GERRIT_REFSPEC
274
275     builders:
276       - 'cloud-infra-determine-scenario-macro'
277       - 'cloud-infra-scenario-{phase}-macro'
278
279 # vim: set ts=2 sw=2 expandtab: