e4c9875fe2407dd7dd86b4461abfa62f1fdc3970
[infra/cicd.git] / jjb / engine / verify-jobs / kubernetes-verify-tox.yaml
1 ---
2 # ============LICENSE_START=======================================================
3 #  Copyright (C) 2019 Nordix Foundation.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #      http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 # SPDX-License-Identifier: Apache-2.0
18 # ============LICENSE_END=========================================================
19
20 - project:
21     name: 'kubernetes-tox'
22
23     project: 'kubernetes-tox'
24
25     # NOTE (fdegir): dot is not an allowed character in groovy var names and also for
26     # naming openstack objects so stream is used for that purpose but branch points to
27     # actual branch name on gerrit
28     stream:
29       - 'master':
30           branch: 'master'
31           gated-projects: 'infra/stack/kubernetes|infra/installer/kubespray'
32       - '1_17':
33           branch: '1.17'
34           gated-projects: 'infra/stack/kubernetes|infra/installer/kubespray'
35       - '1_15':
36           branch: '1.15'
37           gated-projects: 'infra/stack/kubernetes|infra/installer/kubespray'
38
39     lint-type:
40       - ansible-lint:
41           disabled: false
42           repos-to-ignore: ''
43       - shellcheck:
44           disabled: false
45           repos-to-ignore: ''
46       - yamllint:
47           disabled: false
48           repos-to-ignore: ''
49
50     jobs:
51       - 'kubernetes-verify-tox-{stream}'
52       - 'kubernetes-verify-{lint-type}-{stream}'
53
54 - job-template:
55     name: 'kubernetes-verify-tox-{stream}'
56
57     project-type: multijob
58
59     concurrent: true
60
61     node: infra-tools-docker-slave-ubuntu1804
62
63     parameters:
64       - project-parameters:
65           project: $GERRIT_PROJECT
66           branch: '{branch}'
67           description: 'The project and branch which the change is proposed for'
68       - string:
69           name: VERBOSITY
70           default: 'false'
71           description: 'Verbosity setting for the tox script'
72       - nordix-gerrit-parameters
73
74     properties:
75       - logrotate
76       # NOTE (fdegir): throttle categories are controlled in jenkins global configuration
77       - throttle:
78           enabled: true
79           max-per-node: 1
80           max-total: 4
81           option: category
82           categories:
83             - engine-verify-tox
84
85     wrappers:
86       - build-timeout:
87           timeout: 60
88       - fix-workspace-permissions
89
90     scm:
91       - git-scm-gerrit:
92           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
93           branch: $GERRIT_BRANCH
94           refspec: $GERRIT_REFSPEC
95           wipe_workspace: true
96           clean_before: false
97
98     triggers:
99       - gerrit:
100           server-name: 'Nordix Gerrit'
101           trigger-on:
102             - patchset-created-event:
103                 exclude-drafts: 'false'
104                 exclude-trivial-rebase: 'false'
105                 exclude-no-code-change: 'false'
106             - draft-published-event
107             - comment-added-contains-event:
108                 comment-contains-value: 'recheck'
109             - comment-added-contains-event:
110                 comment-contains-value: 'reverify'
111           projects:
112             - project-compare-type: 'REG_EXP'
113               project-pattern: '{gated-projects}'
114               branches:
115                 - branch-compare-type: 'ANT'
116                   branch-pattern: '**/{branch}'
117               disable-strict-forbidden-file-verification: 'false'
118               forbidden-file-paths:
119                 - compare-type: ANT
120                   pattern: '.gitignore|.gitreview|.yamllint|README.md|bindep.txt|setup.cfg|setup.py'
121           custom-url: '* $JOB_NAME $BUILD_URL'
122
123     builders:
124       - multijob:
125           name: Static Analysis
126           condition: ALWAYS
127           execution-type: PARALLEL
128           projects:
129             - name: 'kubernetes-verify-ansible-lint-{stream}'
130               current-parameters: true
131               kill-phase-on: NEVER
132               abort-all-job: false
133             - name: 'kubernetes-verify-shellcheck-{stream}'
134               current-parameters: true
135               kill-phase-on: NEVER
136               abort-all-job: false
137             - name: 'kubernetes-verify-yamllint-{stream}'
138               current-parameters: true
139               kill-phase-on: NEVER
140               abort-all-job: false
141
142 - job-template:
143     name: 'kubernetes-verify-{lint-type}-{stream}'
144
145     disabled: '{obj:disabled}'
146
147     concurrent: true
148
149     node: infra-tools-docker-slave-ubuntu1804
150
151     parameters:
152       - string:
153           name: LINT_TYPE
154           default: '{lint-type}'
155           description: 'Lint type to run'
156       - string:
157           name: REPOS_TO_IGNORE
158           default: '{repos-to-ignore}'
159           description: 'Repos to ignore for the specific lint type'
160
161     properties:
162       - logrotate
163
164     wrappers:
165       - build-timeout:
166           timeout: 150
167       - fix-workspace-permissions
168
169     scm:
170       - git-scm-gerrit:
171           ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
172           branch: $GERRIT_BRANCH
173           refspec: $GERRIT_REFSPEC
174           wipe_workspace: true
175           clean_before: false
176
177     builders:
178       - 'tox-macro'
179
180 # vim: set ts=2 sw=2 expandtab: