Disable verify-centos and periodic jobs
[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           disabled: false
57           successful: false
58           failed: false
59           unstable: false
60           notbuilt: false
61       - centos7:
62           disabled: true
63           successful: true
64           failed: true
65           unstable: true
66           notbuilt: true
67
68     type:
69       - virtual
70
71     phase:
72       - deploy
73       - functest
74
75     jobs:
76       - 'cloud-infra-verify-engine-{distro}-{type}-{stream}'
77       - 'cloud-infra-verify-engine-{distro}-{phase}-{type}-{stream}'
78
79 - job-template:
80     name: 'cloud-infra-verify-engine-{distro}-{type}-{stream}'
81
82     project-type: multijob
83
84     disabled: '{obj:disabled}'
85
86     concurrent: true
87
88     parameters:
89       - project-parameters:
90           project: '{project}'
91           branch: '{branch}'
92       - nordix-gerrit-parameters
93       - label:
94           name: SLAVE_LABEL
95           default: 'vpod-deploy-city'
96           description: 'Slave label to schedule this job on. All slaves have Ubuntu1604 no matter what distro target nodes use'
97       - string:
98           name: DISTRO
99           default: '{distro}'
100           description: 'Distribution to use for configuring target nodes (networking etc.)'
101       - string:
102           name: DEPLOY_TYPE
103           default: '{type}'
104           description: 'Type of the deployment'
105       - string:
106           name: USE_PREBUILT_DEPLOYMENT_IMAGE
107           default: 'true'
108           description: 'Use prebuilt deployment image while running as part of CI/CD'
109       - string:
110           name: TEST_SUITE
111           default: 'healthcheck'
112           description: 'Test suite to run'
113       - string:
114           name: YARDSTICK_DISPATCHER
115           default: 'file'
116           description: 'Dispatcher to use for Yardstick reporting'
117       - string:
118           name: CLEANUP
119           default: 'true'
120           description: 'Cleanup leftovers of the previous run'
121
122     properties:
123       - logrotate
124       - build-blocker:
125           use-build-blocker: true
126           blocking-jobs:
127             - 'cloud-infra-verify-engine-.*'
128             - 'cloud-infra-verify-scenario-.*'
129             - 'cloud-infra-periodic-engine-.*'
130             - 'k8-.*'
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: 120
140       - fix-workspace-permissions
141
142     scm:
143       - git-scm-gerrit:
144           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
145           branch: '{branch}'
146           refspec: $GERRIT_REFSPEC
147           wipe_workspace: true
148           clean_before: false
149
150     triggers:
151       - gerrit:
152           server-name: 'Nordix Gerrit'
153           trigger-on:
154             - patchset-created-event:
155                 exclude-drafts: 'false'
156                 exclude-trivial-rebase: 'false'
157                 exclude-no-code-change: 'false'
158             - draft-published-event
159             - comment-added-contains-event:
160                 comment-contains-value: 'recheck'
161             - comment-added-contains-event:
162                 comment-contains-value: 'reverify'
163           projects:
164             - project-compare-type: 'REG_EXP'
165               project-pattern: 'infra\/engine'
166               branches:
167                 - branch-compare-type: 'ANT'
168                   branch-pattern: '**/{branch}'
169               file-paths:
170                 - compare-type: 'ANT'
171                   pattern: '**'
172           skip-vote:
173             successful: '{obj:successful}'
174             failed: '{obj:failed}'
175             unstable: '{obj:unstable}'
176             notbuilt: '{obj:notbuilt}'
177           custom-url: '* $JOB_NAME $BUILD_URL'
178
179     builders:
180       - 'cloud-infra-determine-scenario-macro'
181       - multijob:
182           name: deploy
183           condition: SUCCESSFUL
184           projects:
185             - name: 'cloud-infra-verify-engine-{distro}-deploy-{type}-{stream}'
186               current-parameters: true
187               predefined-parameters: |
188                 DISTRO=$DISTRO
189                 DEPLOY_TYPE=$DEPLOY_TYPE
190                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
191                 CLEANUP=$CLEANUP
192                 GERRIT_PROJECT=$GERRIT_PROJECT
193                 GERRIT_BRANCH=$GERRIT_BRANCH
194                 GERRIT_REFSPEC=$GERRIT_REFSPEC
195                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
196                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
197               node-parameters: true
198               kill-phase-on: FAILURE
199               abort-all-job: true
200       - multijob:
201           name: functest
202           condition: SUCCESSFUL
203           projects:
204             - name: 'cloud-infra-verify-engine-{distro}-functest-{type}-{stream}'
205               current-parameters: true
206               predefined-parameters: |
207                 DISTRO=$DISTRO
208                 DEPLOY_TYPE=$DEPLOY_TYPE
209                 USE_PREBUILT_DEPLOYMENT_IMAGE=$USE_PREBUILT_DEPLOYMENT_IMAGE
210                 TEST_SUITE=$TEST_SUITE
211                 YARDSTICK_DISPATCHER=$YARDSTICK_DISPATCHER
212                 CLEANUP=$CLEANUP
213                 GERRIT_PROJECT=$GERRIT_PROJECT
214                 GERRIT_BRANCH=$GERRIT_BRANCH
215                 GERRIT_REFSPEC=$GERRIT_REFSPEC
216                 GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
217                 GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
218               node-parameters: true
219               kill-phase-on: FAILURE
220               abort-all-job: true
221
222 - job-template:
223     name: 'cloud-infra-verify-engine-{distro}-{phase}-{type}-{stream}'
224
225     disabled: false
226
227     concurrent: true
228
229     properties:
230       - logrotate
231
232     parameters:
233       - string:
234           name: PROJECT
235           default: $GERRIT_PROJECT
236       - string:
237           name: DISTRO
238           default: 'ubuntu1804'
239           description: 'Distribution to use for configuring target nodes (networking etc.). Overriden by upstream job.'
240       - string:
241           name: DEPLOY_TYPE
242           default: 'virtual'
243           description: 'Type of the deployment. Overriden by upstream job.'
244       - string:
245           name: USE_PREBUILT_DEPLOYMENT_IMAGE
246           default: 'false'
247           description: 'Use prebuilt deployment image while running as part of CI/CD'
248       - string:
249           name: TEST_FW
250           default: '{phase}'
251           description: 'Test framework to use'
252       - string:
253           name: TEST_SUITE
254           default: 'healthcheck'
255           description: 'Test suite to run'
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: YARDSTICK_DISPATCHER
262           default: 'file'
263           description: 'Dispatcher to use for Yardstick reporting'
264       - string:
265           name: CLEANUP
266           default: 'false'
267
268     wrappers:
269       - build-timeout:
270           timeout: 120
271       - fix-workspace-permissions
272
273     scm:
274       - git-scm-gerrit:
275           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
276           branch: '{branch}'
277           refspec: $GERRIT_REFSPEC
278           wipe_workspace: true
279           clean_before: false
280
281     builders:
282       - 'cloud-infra-determine-scenario-macro'
283       - 'cloud-infra-{phase}-macro'
284
285 # vim: set ts=2 sw=2 expandtab: