blob: 8902f57adb815d8da52427b0394cecf08068fa32 [file] [log] [blame]
robert.tomczyke53f0092019-06-05 12:03:09 +01001- job-template:
2 name: 'onap-{project-name}-{stream}-verify-java'
robert.tomczyk19d1ad12020-03-23 16:35:32 +00003 disabled_job_var: false
robert.tomczyk08e50eb2020-08-11 16:53:28 +01004 node: onap-ubuntu1804
robert.tomczyke53f0092019-06-05 12:03:09 +01005
robert.tomczyk19d1ad12020-03-23 16:35:32 +00006 disabled: '{obj:disabled_job_var}'
robert.tomczyke53f0092019-06-05 12:03:09 +01007 concurrent: true
robert.tomczyk750a20f2020-08-18 11:08:43 +01008 mvn_settings_xml_version:
afenner29099642020-08-28 16:09:31 +01009 mvn_params:
robert.tomczykc75d04b2020-11-09 13:28:21 +000010 mvn_version: 3.5.4
afennera6c9eaa2020-10-21 17:04:50 +010011 subdirectory:
robert.tomczyke53f0092019-06-05 12:03:09 +010012 properties:
13 - logrotate
14
15 parameters:
afenner49aae692019-08-16 14:50:42 +010016 - project-parameters:
17 project: 'onap/{project}'
18 branch: '{branch}'
robert.tomczyke53f0092019-06-05 12:03:09 +010019 - nordix-gerrit-parameters
robert.tomczyk9e42d672023-06-28 10:39:12 +010020 - string:
21 name: JAVA_HOME
22 default: '/usr/lib/jvm/{jdk-version}-openjdk-amd64'
23 description: Java home
24 - string:
25 name: MVN_VERSION
26 default: '{mvn_version}'
27 description: Maven version
28 - string:
29 name: MVN_URL
30 default: https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/$MVN_VERSION/apache-maven-${{MVN_VERSION}}-bin.zip
31 description: URL to download Maven
32 - string:
33 name: MVN
34 default: $WORKSPACE/apache-maven-${{MVN_VERSION}}/bin/mvn
35 description: Path to mvn executable
36 - string:
37 name: MVN_SETTINGS_XML_VERSION
38 default: '{mvn_settings_xml_version}'
39 description: Commit ID of ONAP Oparent repository (https://git.onap.org/oparent/) to pull. Used for Maven settings file. Can be left blank to pull the latest version.
40 - string:
41 name: MVN_PARAMS
42 default: '{mvn_params}'
43 description: Maven build parameters
44 - string:
45 name: SUBDIRECTORY
46 default: '{subdirectory}'
47 description: Subdirectory of the workspace for which the pom.xml will be called. This allows the verify to be called against a specific directory
robert.tomczykd69f7452023-06-27 10:58:16 +010048
robert.tomczyke53f0092019-06-05 12:03:09 +010049 scm:
50 - git-scm-gerrit:
51 ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
52 branch: '{branch}'
53 refspec: $GERRIT_REFSPEC
robert.tomczyk7e507872019-06-18 17:20:26 +010054 wipe_workspace: true
55 clean_before: false
robert.tomczyke53f0092019-06-05 12:03:09 +010056
57 triggers:
58 - nordix-gerrit-trigger-patchset-created:
59 project: 'onap/{project}'
60 branch: '{branch}'
61 files: '**'
62
63 wrappers:
64 - build-timeout:
65 timeout: 45
66
67 builders:
68 - shell:
robert.tomczyk08e50eb2020-08-11 16:53:28 +010069 !include-raw-escape: ./verify-jobs.sh
andrew-estbed991f2021-06-22 15:23:46 +010070
afenner64ae4312023-07-12 09:17:45 +010071# A job to perform CSIT on policy components
72- job-template:
73 name: 'onap-{project-name}-{stream}-policy-csit-verify-java'
74 disabled_job_var: false
75 node: onap-ubuntu1804
76
77 disabled: '{obj:disabled_job_var}'
78 concurrent: true
79 mvn_settings_xml_version:
80 mvn_params:
81 mvn_version: 3.5.4
82 subdirectory:
83 properties:
84 - logrotate
85
86 parameters:
87 - project-parameters:
88 project: 'onap/{project}'
89 branch: '{branch}'
90 - nordix-gerrit-parameters
91 - string:
92 name: JAVA_HOME
93 default: '/usr/lib/jvm/{jdk-version}-openjdk-amd64'
94 description: Java home
95 - string:
96 name: MVN_VERSION
97 default: '{mvn_version}'
98 description: Maven version
99 - string:
100 name: MVN_URL
101 default: https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/$MVN_VERSION/apache-maven-${{MVN_VERSION}}-bin.zip
102 description: URL to download Maven
103 - string:
104 name: MVN
105 default: $WORKSPACE/apache-maven-${{MVN_VERSION}}/bin/mvn
106 description: Path to mvn executable
107 - string:
108 name: MVN_SETTINGS_XML_VERSION
109 default: '{mvn_settings_xml_version}'
110 description: Commit ID of ONAP Oparent repository (https://git.onap.org/oparent/) to pull. Used for Maven settings file. Can be left blank to pull the latest version.
111 - string:
112 name: MVN_PARAMS
113 default: '{mvn_params}'
114 description: Maven build parameters
115 - string:
116 name: CSIT_NAME
117 default: '{csit-name}'
118 description: The name of the csit-test to run
119 - string:
120 name: SUBDIRECTORY
121 default: '{subdirectory}'
122 description: Subdirectory of the workspace for which the pom.xml will be called. This allows the verify to be called against a specific directory
123
124 scm:
125 - git-scm-gerrit:
126 ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
127 branch: '{branch}'
128 refspec: $GERRIT_REFSPEC
129 wipe_workspace: true
130 clean_before: false
131
132 triggers:
133 - nordix-gerrit-trigger-patchset-created:
134 project: 'onap/{project}'
135 branch: '{branch}'
136 files: '**'
137
138 wrappers:
139 - build-timeout:
140 timeout: 45
141
142 builders:
143 - shell:
144 !include-raw-escape: ./verify-jobs.sh
145 - shell:
146 !include-raw-escape: ./verify-policy-csit.sh
robert.tomczykd69f7452023-06-27 10:58:16 +0100147- job-template:
robert.tomczyk9e42d672023-06-28 10:39:12 +0100148 name: 'onap-{project-name}-{stream}-performance-test-java'
robert.tomczykd69f7452023-06-27 10:58:16 +0100149 disabled_job_var: false
150 node: onap-ubuntu1804
151
152 disabled: '{obj:disabled_job_var}'
153 concurrent: true
154 mvn_settings_xml_version:
155 mvn_params:
156 mvn_version: 3.5.4
157 subdirectory:
158 properties:
159 - logrotate
160
161 parameters:
162 - project-parameters:
163 project: 'onap/{project}'
164 branch: '{branch}'
165 - nordix-gerrit-parameters
robert.tomczyk9e42d672023-06-28 10:39:12 +0100166 - string:
167 name: JAVA_HOME
168 default: '/usr/lib/jvm/{jdk-version}-openjdk-amd64'
169 description: Java home
170 - string:
171 name: MVN_VERSION
172 default: '{mvn_version}'
173 description: Maven version
174 - string:
175 name: MVN_URL
176 default: https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/$MVN_VERSION/apache-maven-${{MVN_VERSION}}-bin.zip
177 description: URL to download Maven
178 - string:
179 name: MVN
180 default: $WORKSPACE/apache-maven-${{MVN_VERSION}}/bin/mvn
181 description: Path to mvn executable
182 - string:
183 name: MVN_SETTINGS_XML_VERSION
184 default: '{mvn_settings_xml_version}'
185 description: Commit ID of ONAP Oparent repository (https://git.onap.org/oparent/) to pull. Used for Maven settings file. Can be left blank to pull the latest version.
186 - string:
187 name: MVN_PARAMS
188 default: '{mvn_params}'
189 description: Maven build parameters
190 - string:
191 name: SUBDIRECTORY
192 default: '{subdirectory}'
193 description: Subdirectory of the workspace for which the pom.xml will be called. This allows the verify to be called against a specific directory
robert.tomczykd69f7452023-06-27 10:58:16 +0100194 scm:
robert.tomczykc87b9772023-07-03 18:15:06 +0100195 - git-scm:
robert.tomczykd69f7452023-06-27 10:58:16 +0100196 ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
197 branch: '{branch}'
robert.tomczyk9e42d672023-06-28 10:39:12 +0100198 refspec: ''
robert.tomczykd69f7452023-06-27 10:58:16 +0100199 wipe_workspace: true
200 clean_before: false
201
202 triggers:
203 - timed: '{timer}'
robert.tomczyk57ef7c22023-07-03 17:33:19 +0100204 - gerrit:
205 server-name: 'Nordix Gerrit'
206 trigger-on:
207 - comment-added-contains-event:
208 comment-contains-value: 'performance-test'
209 projects:
210 - project-compare-type: 'ANT'
211 project-pattern: 'onap/{project}'
212 branches:
213 - branch-compare-type: 'ANT'
214 branch-pattern: '**/{branch}'
215 file-paths:
216 - compare-type: 'ANT'
217 pattern: '**'
robert.tomczykd69f7452023-06-27 10:58:16 +0100218
219 wrappers:
220 - build-timeout:
221 timeout: 45
222
223 builders:
224 - shell:
225 !include-raw-escape: ./verify-jobs.sh
226
afenner64ae4312023-07-12 09:17:45 +0100227
andrew-estbed991f2021-06-22 15:23:46 +0100228# csits for diferent projects are different so need to have special handling
229- job-template:
230 name: 'onap-policy-docker-{stream}-csit-java'
231 disabled_job_var: false
232 node: onap-ubuntu1804
233
234 disabled: '{obj:disabled_job_var}'
235 concurrent: true
236 properties:
237 - logrotate
238
239 parameters:
240 - project-parameters:
241 project: 'onap/{project}'
242 branch: '{branch}'
243 - nordix-gerrit-parameters
244 - string:
245 name: JAVA_HOME
246 default: '/usr/lib/jvm/{jdk-version}-openjdk-amd64'
247 description: Java home
248 - string:
249 name: CSIT_TEST_NAMES
250 default: '{csit_test_names}'
251 description: The name of the csits test to run
252 scm:
253 - git-scm-gerrit:
254 ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
255 branch: 'master'
256 refspec: $GERRIT_REFSPEC
257 wipe_workspace: true
258 clean_before: false
259
260 triggers:
261 - nordix-gerrit-trigger-patchset-created:
262 project: 'onap/{project}'
263 branch: '{branch}'
264 files: '**'
265
266 wrappers:
267 - build-timeout:
268 timeout: 45
269
270 builders:
271 - 'wait-pkg-mgr-macro'
272 - shell:
273 !include-raw-escape: ./policy-docker-csit-jobs.sh