Merge "Airship define jobs per project, not in defaults"
[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: 120
73       - functest:
74           build-timeout: 60
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             - 'onap-.*'
128             - 'k8-.*'
129             - 'os-.*'
130             - 'nolabs-.*'
131           block-level: 'NODE'
132       - throttle:
133           max-per-node: 1
134           max-total: 3
135           option: project
136
137     wrappers:
138       - build-timeout:
139           timeout: 180
140       - fix-workspace-permissions
141       - openstack:
142           single-use: True
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       - nordix-gerrit-trigger-patchset-created:
154           project: 'infra\/swconfig'
155           branch: '{branch}'
156           files: '**'
157           custom-url: '* $JOB_NAME $BUILD_URL'
158           skip-vote:
159             successful: '{obj:successful}'
160             failed: '{obj:failed}'
161             unstable: '{obj:unstable}'
162             notbuilt: '{obj:notbuilt}'
163
164     builders:
165       - 'cloud-infra-determine-scenario-macro'
166       - multijob:
167           name: deploy
168           condition: SUCCESSFUL
169           projects:
170             - name: 'cloud-infra-verify-scenario-{distro}-deploy-{type}-{stream}'
171               current-parameters: true
172               predefined-parameters: |
173                 DISTRO=$DISTRO
174                 DEPLOY_TYPE=$DEPLOY_TYPE
175                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
176                 CLEANUP=$CLEANUP
177                 GERRIT_PROJECT=$GERRIT_PROJECT
178                 GERRIT_BRANCH=$GERRIT_BRANCH
179                 GERRIT_REFSPEC=$GERRIT_REFSPEC
180                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
181                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
182               node-parameters: true
183               kill-phase-on: FAILURE
184               abort-all-job: true
185       - multijob:
186           name: functest
187           condition: SUCCESSFUL
188           projects:
189             - name: 'cloud-infra-verify-scenario-{distro}-functest-{type}-{stream}'
190               current-parameters: true
191               predefined-parameters: |
192                 DISTRO=$DISTRO
193                 DEPLOY_TYPE=$DEPLOY_TYPE
194                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
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-{distro}-{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: DISTRO
222           default: 'ubuntu1804'
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: TEST_FW
234           default: '{phase}'
235           description: 'Test framework to use'
236       - string:
237           name: TEST_SUITE
238           default: 'healthcheck'
239           description: 'Test suite to run'
240       - string:
241           name: ENGINE_REPO_URL
242           default: 'https://gerrit.nordix.org/infra/engine.git'
243           description: 'URL to Nordix Cloud Infra engine repository'
244       - string:
245           name: TEST_REPO_URL
246           default: 'https://gerrit.nordix.org/infra/test.git'
247           description: 'URL to Nordix Cloud Infra test repository'
248       - string:
249           name: CLEANUP
250           default: 'false'
251
252     wrappers:
253       - build-timeout:
254           timeout: '{build-timeout}'
255       - fix-workspace-permissions
256
257     scm:
258       - git-scm-gerrit:
259           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
260           branch: '{branch}'
261           refspec: $GERRIT_REFSPEC
262           wipe_workspace: true
263           clean_before: false
264
265     builders:
266       - 'cloud-infra-determine-scenario-macro'
267       - 'cloud-infra-scenario-{phase}-macro'
268
269 # vim: set ts=2 sw=2 expandtab: