5b300a5034a96aebd42d9b680d9c415ce3267bf4
[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     distro:
53       - ubuntu1804:
54           disabled: false
55           successful: false
56           failed: false
57           unstable: false
58           notbuilt: false
59       - centos7:
60           disabled: false
61           successful: true
62           failed: true
63           unstable: true
64           notbuilt: true
65
66     type:
67       - virtual:
68           slave-label: 'vpod-deploy-city'
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-{distro}-.*'
125             - 'cloud-infra-verify-scenario-{distro}-.*'
126             - 'cloud-infra-periodic-engine-{distro}-.*'
127             - 'cloud-infra-os-.*'
128             - 'cloud-infra-k8-.*'
129           block-level: 'NODE'
130       - throttle:
131           max-per-node: 1
132           max-total: 3
133           option: project
134
135     wrappers:
136       - build-timeout:
137           timeout: 90
138       - fix-workspace-permissions
139
140     scm:
141       - git-scm-gerrit:
142           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
143           branch: '{branch}'
144           refspec: $GERRIT_REFSPEC
145
146     triggers:
147       - nordix-gerrit-trigger-patchset-created:
148           project: 'infra\/swconfig'
149           branch: '{branch}'
150           files: '**'
151           custom-url: '* $JOB_NAME $BUILD_URL'
152           skip-vote:
153             successful: '{obj:successful}'
154             failed: '{obj:failed}'
155             unstable: '{obj:unstable}'
156             notbuilt: '{obj:notbuilt}'
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-{distro}-deploy-{type}-{stream}'
165               current-parameters: true
166               predefined-parameters: |
167                 DISTRO=$DISTRO
168                 DEPLOY_TYPE=$DEPLOY_TYPE
169                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
170                 CLEANUP=$CLEANUP
171                 GERRIT_PROJECT=$GERRIT_PROJECT
172                 GERRIT_BRANCH=$GERRIT_BRANCH
173                 GERRIT_REFSPEC=$GERRIT_REFSPEC
174                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
175                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
176               node-parameters: true
177               kill-phase-on: FAILURE
178               abort-all-job: true
179       - multijob:
180           name: functest
181           condition: SUCCESSFUL
182           projects:
183             - name: 'cloud-infra-verify-scenario-{distro}-functest-{type}-{stream}'
184               current-parameters: true
185               predefined-parameters: |
186                 DISTRO=$DISTRO
187                 DEPLOY_TYPE=$DEPLOY_TYPE
188                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
189                 TEST_SUITE=$TEST_SUITE
190                 CLEANUP=$CLEANUP
191                 GERRIT_PROJECT=$GERRIT_PROJECT
192                 GERRIT_BRANCH=$GERRIT_BRANCH
193                 GERRIT_REFSPEC=$GERRIT_REFSPEC
194                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
195                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
196               node-parameters: true
197               kill-phase-on: FAILURE
198               abort-all-job: true
199
200 - job-template:
201     name: 'cloud-infra-verify-scenario-{distro}-{phase}-{type}-{stream}'
202
203     disabled: false
204
205     concurrent: true
206
207     properties:
208       - logrotate
209
210     parameters:
211       - string:
212           name: PROJECT
213           default: $GERRIT_PROJECT
214       - string:
215           name: DISTRO
216           default: 'ubuntu1804'
217           description: 'Distribution to use for configuring target nodes (networking etc.). Overriden by upstream job.'
218       - string:
219           name: DEPLOY_TYPE
220           default: 'virtual'
221           description: 'Type of the deployment. Overriden by upstream job.'
222       - string:
223           name: USE_PREBUILT_DEPLOYMENT_IMAGE
224           default: 'false'
225           description: 'Use prebuilt deployment image while running as part of CI/CD'
226       - string:
227           name: TEST_FW
228           default: '{phase}'
229           description: 'Test framework to use'
230       - string:
231           name: TEST_SUITE
232           default: 'healthcheck'
233           description: 'Test suite to run'
234       - string:
235           name: ENGINE_REPO_URL
236           default: 'https://gerrit.nordix.org/infra/engine.git'
237           description: 'URL to Nordix Cloud Infra engine repository'
238       - string:
239           name: TEST_REPO_URL
240           default: 'https://gerrit.nordix.org/infra/test.git'
241           description: 'URL to Nordix Cloud Infra test repository'
242       - string:
243           name: CLEANUP
244           default: 'false'
245
246     wrappers:
247       - build-timeout:
248           timeout: '{build-timeout}'
249       - fix-workspace-permissions
250
251     scm:
252       - git-scm-gerrit:
253           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
254           branch: '{branch}'
255           refspec: $GERRIT_REFSPEC
256
257     builders:
258       - 'cloud-infra-determine-scenario-macro'
259       - 'cloud-infra-scenario-{phase}-macro'
260
261 # vim: set ts=2 sw=2 expandtab: