blob: aa9b4879c7786f798844fdb064be22611479a69e [file] [log] [blame]
Jakub Josef79ecec32017-02-17 14:36:28 +01001package com.mirantis.mk
Jakub Josef6d8082b2017-08-09 12:40:50 +02002
Jakub Josefb41c8d52017-03-24 13:52:24 +01003import static groovy.json.JsonOutput.prettyPrint
4import static groovy.json.JsonOutput.toJson
Jakub Josef6d8082b2017-08-09 12:40:50 +02005
Jakub Josefbceaa322017-06-13 18:28:27 +02006import com.cloudbees.groovy.cps.NonCPS
Jakub Josefb7ab8472017-04-05 14:56:53 +02007import groovy.json.JsonSlurperClassic
azvyagintsev6bda9422018-08-20 11:57:05 +03008
Jakub Josef79ecec32017-02-17 14:36:28 +01009/**
10 *
11 * Common functions
12 *
13 */
14
15/**
16 * Generate current timestamp
17 *
azvyagintsev6bda9422018-08-20 11:57:05 +030018 * @param format Defaults to yyyyMMddHHmmss
Jakub Josef79ecec32017-02-17 14:36:28 +010019 */
azvyagintsev6bda9422018-08-20 11:57:05 +030020def getDatetime(format = "yyyyMMddHHmmss") {
Jakub Josef79ecec32017-02-17 14:36:28 +010021 def now = new Date();
22 return now.format(format, TimeZone.getTimeZone('UTC'));
23}
24
25/**
Jakub Josef79ecec32017-02-17 14:36:28 +010026 * Return workspace.
27 * Currently implemented by calling pwd so it won't return relevant result in
28 * dir context
29 */
azvyagintsev6bda9422018-08-20 11:57:05 +030030def getWorkspace(includeBuildNum = false) {
Jakub Josef79ecec32017-02-17 14:36:28 +010031 def workspace = sh script: 'pwd', returnStdout: true
32 workspace = workspace.trim()
azvyagintsev6bda9422018-08-20 11:57:05 +030033 if (includeBuildNum) {
34 if (!workspace.endsWith("/")) {
35 workspace += "/"
36 }
37 workspace += env.BUILD_NUMBER
Jakub Josefa661b8c2018-01-17 14:51:25 +010038 }
Jakub Josef79ecec32017-02-17 14:36:28 +010039 return workspace
40}
41
42/**
Filip Pytloun81c864d2017-03-21 15:19:30 +010043 * Get UID of jenkins user.
44 * Must be run from context of node
45 */
46def getJenkinsUid() {
azvyagintsev6bda9422018-08-20 11:57:05 +030047 return sh(
Filip Pytloun81c864d2017-03-21 15:19:30 +010048 script: 'id -u',
49 returnStdout: true
50 ).trim()
51}
52
53/**
54 * Get GID of jenkins user.
55 * Must be run from context of node
56 */
57def getJenkinsGid() {
azvyagintsev6bda9422018-08-20 11:57:05 +030058 return sh(
Filip Pytloun81c864d2017-03-21 15:19:30 +010059 script: 'id -g',
60 returnStdout: true
61 ).trim()
62}
63
64/**
Jakub Josefc8074db2018-01-30 13:33:20 +010065 * Returns Jenkins user uid and gid in one list (in that order)
66 * Must be run from context of node
67 */
azvyagintsev6bda9422018-08-20 11:57:05 +030068def getJenkinsUserIds() {
Jakub Josefc8074db2018-01-30 13:33:20 +010069 return sh(script: "id -u && id -g", returnStdout: true).tokenize("\n")
70}
71
72/**
Alexander Evseevbc1fea42017-12-13 10:03:03 +010073 *
74 * Find credentials by ID
75 *
azvyagintsev6bda9422018-08-20 11:57:05 +030076 * @param credsId Credentials ID
77 * @param credsType Credentials type (optional)
Alexander Evseevbc1fea42017-12-13 10:03:03 +010078 *
79 */
80def getCredentialsById(String credsId, String credsType = 'any') {
81 def credClasses = [ // ordered by class name
azvyagintsev6bda9422018-08-20 11:57:05 +030082 sshKey : com.cloudbees.jenkins.plugins.sshcredentials.impl.BasicSSHUserPrivateKey.class,
83 cert : com.cloudbees.plugins.credentials.common.CertificateCredentials.class,
84 password : com.cloudbees.plugins.credentials.common.StandardUsernamePasswordCredentials.class,
85 any : com.cloudbees.plugins.credentials.impl.BaseStandardCredentials.class,
86 dockerCert: org.jenkinsci.plugins.docker.commons.credentials.DockerServerCredentials.class,
87 file : org.jenkinsci.plugins.plaincredentials.FileCredentials.class,
88 string : org.jenkinsci.plugins.plaincredentials.StringCredentials.class,
Alexander Evseevbc1fea42017-12-13 10:03:03 +010089 ]
90 return com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(
91 credClasses[credsType],
92 jenkins.model.Jenkins.instance
azvyagintsev6bda9422018-08-20 11:57:05 +030093 ).findAll { cred -> cred.id == credsId }[0]
Alexander Evseevbc1fea42017-12-13 10:03:03 +010094}
95
96/**
Jakub Josef79ecec32017-02-17 14:36:28 +010097 * Get credentials from store
98 *
azvyagintsev6bda9422018-08-20 11:57:05 +030099 * @param id Credentials name
Jakub Josef79ecec32017-02-17 14:36:28 +0100100 */
Jakub Josef3d9d9ab2017-03-14 15:09:03 +0100101def getCredentials(id, cred_type = "username_password") {
Alexander Evseevbc1fea42017-12-13 10:03:03 +0100102 warningMsg('You are using obsolete function. Please switch to use `getCredentialsById()`')
Jakub Josef79ecec32017-02-17 14:36:28 +0100103
Alexander Evseevbc1fea42017-12-13 10:03:03 +0100104 type_map = [
105 username_password: 'password',
azvyagintsev6bda9422018-08-20 11:57:05 +0300106 key : 'sshKey',
Alexander Evseevbc1fea42017-12-13 10:03:03 +0100107 ]
Jakub Josef79ecec32017-02-17 14:36:28 +0100108
Alexander Evseevbc1fea42017-12-13 10:03:03 +0100109 return getCredentialsById(id, type_map[cred_type])
Jakub Josef79ecec32017-02-17 14:36:28 +0100110}
111
112/**
113 * Abort build, wait for some time and ensure we will terminate
114 */
115def abortBuild() {
116 currentBuild.build().doStop()
117 sleep(180)
118 // just to be sure we will terminate
119 throw new InterruptedException()
120}
121
122/**
Jakub Josefbceaa322017-06-13 18:28:27 +0200123 * Print pretty-printed string representation of given item
124 * @param item item to be pretty-printed (list, map, whatever)
125 */
azvyagintsev6bda9422018-08-20 11:57:05 +0300126def prettyPrint(item) {
Jakub Josefbceaa322017-06-13 18:28:27 +0200127 println prettify(item)
128}
129
130/**
Jakub Josefb41c8d52017-03-24 13:52:24 +0100131 * Return pretty-printed string representation of given item
132 * @param item item to be pretty-printed (list, map, whatever)
133 * @return pretty-printed string
134 */
azvyagintsev6bda9422018-08-20 11:57:05 +0300135def prettify(item) {
Jakub Josefbceaa322017-06-13 18:28:27 +0200136 return groovy.json.JsonOutput.prettyPrint(toJson(item)).replace('\\n', System.getProperty('line.separator'))
Jakub Josefb41c8d52017-03-24 13:52:24 +0100137}
138
139/**
Jakub Josef79ecec32017-02-17 14:36:28 +0100140 * Print informational message
141 *
142 * @param msg
143 * @param color Colorful output or not
144 */
145def infoMsg(msg, color = true) {
146 printMsg(msg, "cyan")
147}
148
149/**
150 * Print error message
151 *
152 * @param msg
153 * @param color Colorful output or not
154 */
155def errorMsg(msg, color = true) {
156 printMsg(msg, "red")
157}
158
159/**
160 * Print success message
161 *
162 * @param msg
163 * @param color Colorful output or not
164 */
165def successMsg(msg, color = true) {
166 printMsg(msg, "green")
167}
168
169/**
170 * Print warning message
171 *
172 * @param msg
173 * @param color Colorful output or not
174 */
175def warningMsg(msg, color = true) {
Jakub Josef0e7bd632017-03-16 16:25:05 +0100176 printMsg(msg, "yellow")
Jakub Josef79ecec32017-02-17 14:36:28 +0100177}
178
179/**
Jakub Josef952ae0b2017-03-14 19:04:21 +0100180 * Print debug message, this message will show only if DEBUG global variable is present
181 * @param msg
182 * @param color Colorful output or not
183 */
azvyagintsev6bda9422018-08-20 11:57:05 +0300184def debugMsg(msg, color = true) {
Jakub Josef9a836ac2017-04-24 12:26:02 +0200185 // if debug property exists on env, debug is enabled
azvyagintsev6bda9422018-08-20 11:57:05 +0300186 if (env.getEnvironment().containsKey('DEBUG') && env['DEBUG'] == "true") {
Jakub Josef74b34692017-03-15 12:10:57 +0100187 printMsg("[DEBUG] ${msg}", "red")
Jakub Josef952ae0b2017-03-14 19:04:21 +0100188 }
189}
190
azvyagintsevf6e77912018-09-07 15:41:09 +0300191def getColorizedString(msg, color) {
192 def colorMap = [
193 'red' : '\u001B[31m',
194 'black' : '\u001B[30m',
195 'green' : '\u001B[32m',
196 'yellow': '\u001B[33m',
197 'blue' : '\u001B[34m',
198 'purple': '\u001B[35m',
199 'cyan' : '\u001B[36m',
200 'white' : '\u001B[37m',
201 'reset' : '\u001B[0m'
202 ]
Vasyl Saienko00ef98b2018-09-05 10:34:32 +0300203
azvyagintsevf6e77912018-09-07 15:41:09 +0300204 return "${colorMap[color]}${msg}${colorMap.reset}"
Vasyl Saienko00ef98b2018-09-05 10:34:32 +0300205}
206
Jakub Josef952ae0b2017-03-14 19:04:21 +0100207/**
Jakub Josef79ecec32017-02-17 14:36:28 +0100208 * Print message
209 *
azvyagintsev6bda9422018-08-20 11:57:05 +0300210 * @param msg Message to be printed
Vasyl Saienko00ef98b2018-09-05 10:34:32 +0300211 * @param color Color to use for output
Jakub Josef79ecec32017-02-17 14:36:28 +0100212 */
Vasyl Saienko00ef98b2018-09-05 10:34:32 +0300213def printMsg(msg, color) {
214 print getColorizedString(msg, color)
Jakub Josef79ecec32017-02-17 14:36:28 +0100215}
216
217/**
218 * Traverse directory structure and return list of files
219 *
220 * @param path Path to search
221 * @param type Type of files to search (groovy.io.FileType.FILES)
222 */
223@NonCPS
azvyagintsev6bda9422018-08-20 11:57:05 +0300224def getFiles(path, type = groovy.io.FileType.FILES) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100225 files = []
226 new File(path).eachFile(type) {
227 files[] = it
228 }
229 return files
230}
231
232/**
233 * Helper method to convert map into form of list of [key,value] to avoid
234 * unserializable exceptions
235 *
236 * @param m Map
237 */
238@NonCPS
239def entries(m) {
azvyagintsev6bda9422018-08-20 11:57:05 +0300240 m.collect { k, v -> [k, v] }
Jakub Josef79ecec32017-02-17 14:36:28 +0100241}
242
243/**
244 * Opposite of build-in parallel, run map of steps in serial
245 *
Jakub Josef7fb8bbd2017-05-15 16:02:44 +0200246 * @param steps Map of String<name>: CPSClosure2<step> (or list of closures)
Jakub Josef79ecec32017-02-17 14:36:28 +0100247 */
248def serial(steps) {
249 stepsArray = entries(steps)
azvyagintsev6bda9422018-08-20 11:57:05 +0300250 for (i = 0; i < stepsArray.size; i++) {
Jakub Josefd31de302017-05-15 13:59:18 +0200251 def step = stepsArray[i]
Jakub Josef7fb8bbd2017-05-15 16:02:44 +0200252 def dummySteps = [:]
253 def stepKey
azvyagintsev6bda9422018-08-20 11:57:05 +0300254 if (step[1] instanceof List || step[1] instanceof Map) {
255 for (j = 0; j < step[1].size(); j++) {
256 if (step[1] instanceof List) {
Jakub Josef7fb8bbd2017-05-15 16:02:44 +0200257 stepKey = j
azvyagintsev6bda9422018-08-20 11:57:05 +0300258 } else if (step[1] instanceof Map) {
Jakub Josef7fb8bbd2017-05-15 16:02:44 +0200259 stepKey = step[1].keySet()[j]
260 }
azvyagintsev6bda9422018-08-20 11:57:05 +0300261 dummySteps.put("step-${step[0]}-${stepKey}", step[1][stepKey])
Jakub Josefd31de302017-05-15 13:59:18 +0200262 }
azvyagintsev6bda9422018-08-20 11:57:05 +0300263 } else {
Jakub Josefd31de302017-05-15 13:59:18 +0200264 dummySteps.put(step[0], step[1])
265 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100266 parallel dummySteps
267 }
268}
269
270/**
Jakub Josef7fb8bbd2017-05-15 16:02:44 +0200271 * Partition given list to list of small lists
272 * @param inputList input list
273 * @param partitionSize (partition size, optional, default 5)
274 */
azvyagintsev6bda9422018-08-20 11:57:05 +0300275def partitionList(inputList, partitionSize = 5) {
276 List<List<String>> partitions = new ArrayList<>();
277 for (int i = 0; i < inputList.size(); i += partitionSize) {
278 partitions.add(new ArrayList<String>(inputList.subList(i, Math.min(i + partitionSize, inputList.size()))));
279 }
280 return partitions
Jakub Josef7fb8bbd2017-05-15 16:02:44 +0200281}
282
283/**
Jakub Josef79ecec32017-02-17 14:36:28 +0100284 * Get password credentials from store
285 *
azvyagintsev6bda9422018-08-20 11:57:05 +0300286 * @param id Credentials name
Jakub Josef79ecec32017-02-17 14:36:28 +0100287 */
288def getPasswordCredentials(id) {
Alexander Evseevbc1fea42017-12-13 10:03:03 +0100289 return getCredentialsById(id, 'password')
Jakub Josef79ecec32017-02-17 14:36:28 +0100290}
291
292/**
293 * Get SSH credentials from store
294 *
azvyagintsev6bda9422018-08-20 11:57:05 +0300295 * @param id Credentials name
Jakub Josef79ecec32017-02-17 14:36:28 +0100296 */
297def getSshCredentials(id) {
Alexander Evseevbc1fea42017-12-13 10:03:03 +0100298 return getCredentialsById(id, 'sshKey')
Jakub Josef79ecec32017-02-17 14:36:28 +0100299}
Jakub Josef79ecec32017-02-17 14:36:28 +0100300
301/**
302 * Tests Jenkins instance for existence of plugin with given name
303 * @param pluginName plugin short name to test
304 * @return boolean result
305 */
306@NonCPS
azvyagintsev6bda9422018-08-20 11:57:05 +0300307def jenkinsHasPlugin(pluginName) {
308 return Jenkins.instance.pluginManager.plugins.collect { p -> p.shortName }.contains(pluginName)
Jakub Josef79ecec32017-02-17 14:36:28 +0100309}
310
311@NonCPS
312def _needNotification(notificatedTypes, buildStatus, jobName) {
azvyagintsev6bda9422018-08-20 11:57:05 +0300313 if (notificatedTypes && notificatedTypes.contains("onchange")) {
314 if (jobName) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100315 def job = Jenkins.instance.getItem(jobName)
316 def numbuilds = job.builds.size()
azvyagintsev6bda9422018-08-20 11:57:05 +0300317 if (numbuilds > 0) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100318 //actual build is first for some reasons, so last finished build is second
319 def lastBuild = job.builds[1]
azvyagintsev6bda9422018-08-20 11:57:05 +0300320 if (lastBuild) {
321 if (lastBuild.result.toString().toLowerCase().equals(buildStatus)) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100322 println("Build status didn't changed since last build, not sending notifications")
323 return false;
324 }
325 }
326 }
327 }
azvyagintsev6bda9422018-08-20 11:57:05 +0300328 } else if (!notificatedTypes.contains(buildStatus)) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100329 return false;
330 }
331 return true;
332}
333
334/**
335 * Send notification to all enabled notifications services
336 * @param buildStatus message type (success, warning, error), null means SUCCESSFUL
337 * @param msgText message text
338 * @param enabledNotifications list of enabled notification types, types: slack, hipchat, email, default empty
339 * @param notificatedTypes types of notifications will be sent, default onchange - notificate if current build result not equal last result;
340 * otherwise use - ["success","unstable","failed"]
341 * @param jobName optional job name param, if empty env.JOB_NAME will be used
Jakub Josefd0571152017-07-17 14:11:39 +0200342 * @param buildNumber build number param, if empty env.BUILD_NUM will be used
343 * @param buildUrl build url param, if empty env.BUILD_URL will be used
Jakub Josef79ecec32017-02-17 14:36:28 +0100344 * @param mailFrom mail FROM param, if empty "jenkins" will be used, it's mandatory for sending email notifications
Jakub Josefd0571152017-07-17 14:11:39 +0200345 * @param mailTo mail TO param, it's mandatory for sending email notifications, this option enable mail notification
Jakub Josef79ecec32017-02-17 14:36:28 +0100346 */
azvyagintsev6bda9422018-08-20 11:57:05 +0300347def sendNotification(buildStatus, msgText = "", enabledNotifications = [], notificatedTypes = ["onchange"], jobName = null, buildNumber = null, buildUrl = null, mailFrom = "jenkins", mailTo = null) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100348 // Default values
349 def colorName = 'blue'
350 def colorCode = '#0000FF'
351 def buildStatusParam = buildStatus != null && buildStatus != "" ? buildStatus : "SUCCESS"
352 def jobNameParam = jobName != null && jobName != "" ? jobName : env.JOB_NAME
353 def buildNumberParam = buildNumber != null && buildNumber != "" ? buildNumber : env.BUILD_NUMBER
354 def buildUrlParam = buildUrl != null && buildUrl != "" ? buildUrl : env.BUILD_URL
355 def subject = "${buildStatusParam}: Job '${jobNameParam} [${buildNumberParam}]'"
356 def summary = "${subject} (${buildUrlParam})"
357
azvyagintsev6bda9422018-08-20 11:57:05 +0300358 if (msgText != null && msgText != "") {
359 summary += "\n${msgText}"
Jakub Josef79ecec32017-02-17 14:36:28 +0100360 }
azvyagintsev6bda9422018-08-20 11:57:05 +0300361 if (buildStatusParam.toLowerCase().equals("success")) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100362 colorCode = "#00FF00"
363 colorName = "green"
azvyagintsev6bda9422018-08-20 11:57:05 +0300364 } else if (buildStatusParam.toLowerCase().equals("unstable")) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100365 colorCode = "#FFFF00"
366 colorName = "yellow"
azvyagintsev6bda9422018-08-20 11:57:05 +0300367 } else if (buildStatusParam.toLowerCase().equals("failure")) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100368 colorCode = "#FF0000"
369 colorName = "red"
370 }
azvyagintsev6bda9422018-08-20 11:57:05 +0300371 if (_needNotification(notificatedTypes, buildStatusParam.toLowerCase(), jobNameParam)) {
372 if (enabledNotifications.contains("slack") && jenkinsHasPlugin("slack")) {
373 try {
Jakub Josef79ecec32017-02-17 14:36:28 +0100374 slackSend color: colorCode, message: summary
azvyagintsev6bda9422018-08-20 11:57:05 +0300375 } catch (Exception e) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100376 println("Calling slack plugin failed")
377 e.printStackTrace()
378 }
379 }
azvyagintsev6bda9422018-08-20 11:57:05 +0300380 if (enabledNotifications.contains("hipchat") && jenkinsHasPlugin("hipchat")) {
381 try {
Jakub Josef79ecec32017-02-17 14:36:28 +0100382 hipchatSend color: colorName.toUpperCase(), message: summary
azvyagintsev6bda9422018-08-20 11:57:05 +0300383 } catch (Exception e) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100384 println("Calling hipchat plugin failed")
385 e.printStackTrace()
386 }
387 }
azvyagintsev6bda9422018-08-20 11:57:05 +0300388 if (enabledNotifications.contains("email") && mailTo != null && mailTo != "" && mailFrom != null && mailFrom != "") {
389 try {
Jakub Josef79ecec32017-02-17 14:36:28 +0100390 mail body: summary, from: mailFrom, subject: subject, to: mailTo
azvyagintsev6bda9422018-08-20 11:57:05 +0300391 } catch (Exception e) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100392 println("Sending mail plugin failed")
393 e.printStackTrace()
394 }
395 }
396 }
Filip Pytloun49d66302017-03-06 10:26:22 +0100397}
chnyda4e5ac792017-03-14 15:24:18 +0100398
399/**
400 * Execute linux command and catch nth element
401 * @param cmd command to execute
402 * @param index index to retrieve
403 * @return index-th element
404 */
405
azvyagintsev6bda9422018-08-20 11:57:05 +0300406def cutOrDie(cmd, index) {
chnyda4e5ac792017-03-14 15:24:18 +0100407 def common = new com.mirantis.mk.Common()
408 def output
409 try {
azvyagintsev6bda9422018-08-20 11:57:05 +0300410 output = sh(script: cmd, returnStdout: true)
411 def result = output.tokenize(" ")[index]
412 return result;
chnyda4e5ac792017-03-14 15:24:18 +0100413 } catch (Exception e) {
azvyagintsev6bda9422018-08-20 11:57:05 +0300414 common.errorMsg("Failed to execute cmd: ${cmd}\n output: ${output}")
chnyda4e5ac792017-03-14 15:24:18 +0100415 }
Filip Pytloun81c864d2017-03-21 15:19:30 +0100416}
Tomáš Kukrál767dd732017-03-23 10:38:59 +0100417
418/**
419 * Check variable contains keyword
420 * @param variable keywork is searched (contains) here
421 * @param keyword string to look for
422 * @return True if variable contains keyword (case insensitive), False if do not contains or any of input isn't a string
423 */
424
425def checkContains(variable, keyword) {
azvyagintsev6bda9422018-08-20 11:57:05 +0300426 if (env.getEnvironment().containsKey(variable)) {
Jakub Josef7a8dea22017-03-23 19:51:32 +0100427 return env[variable] && env[variable].toLowerCase().contains(keyword.toLowerCase())
Tomáš Kukrál767dd732017-03-23 10:38:59 +0100428 } else {
Tomáš Kukrálc76c1e02017-03-23 19:06:59 +0100429 return false
Tomáš Kukrál767dd732017-03-23 10:38:59 +0100430 }
431}
Jakub Josefa877db52017-04-05 14:22:30 +0200432
433/**
434 * Parse JSON string to hashmap
435 * @param jsonString input JSON string
436 * @return created hashmap
437 */
azvyagintsev6bda9422018-08-20 11:57:05 +0300438def parseJSON(jsonString) {
439 def m = [:]
440 def lazyMap = new JsonSlurperClassic().parseText(jsonString)
441 m.putAll(lazyMap)
442 return m
Jakub Josefa877db52017-04-05 14:22:30 +0200443}
Jakub Josefed239cd2017-05-09 15:27:33 +0200444
445/**
Vasyl Saienko79d6f3b2018-10-19 09:13:46 +0300446 *
447 * Deep merge of Map items. Merges variable number of maps in to onto.
448 * Using the following rules:
449 * - Lists are appended
450 * - Maps are updated
451 * - other object types are replaced.
452 *
453 *
454 * @param onto Map object to merge in
455 * @param overrides Map objects to merge to onto
456*/
457def mergeMaps(Map onto, Map... overrides){
458 if (!overrides){
459 return onto
460 }
461 else if (overrides.length == 1) {
462 overrides[0]?.each { k, v ->
463 if (v in Map && onto[k] in Map){
464 mergeMaps((Map) onto[k], (Map) v)
465 } else if (v in List) {
466 onto[k] += v
467 } else {
468 onto[k] = v
469 }
470 }
471 return onto
472 }
473 return overrides.inject(onto, { acc, override -> mergeMaps(acc, override ?: [:]) })
474}
475
476/**
Jakub Josefed239cd2017-05-09 15:27:33 +0200477 * Test pipeline input parameter existence and validity (not null and not empty string)
478 * @param paramName input parameter name (usually uppercase)
azvyagintsevc8ecdfd2018-09-11 12:47:15 +0300479 */
azvyagintsev6bda9422018-08-20 11:57:05 +0300480def validInputParam(paramName) {
azvyagintsevc8ecdfd2018-09-11 12:47:15 +0300481 if (paramName instanceof java.lang.String) {
482 return env.getEnvironment().containsKey(paramName) && env[paramName] != null && env[paramName] != ""
483 }
484 return false
Tomáš Kukráld34fe872017-06-13 10:50:50 +0200485}
486
487/**
488 * Take list of hashmaps and count number of hashmaps with parameter equals eq
489 * @param lm list of hashmaps
490 * @param param define parameter of hashmap to read and compare
491 * @param eq desired value of hashmap parameter
492 * @return count of hashmaps meeting defined condition
493 */
494
495@NonCPS
496def countHashMapEquals(lm, param, eq) {
azvyagintsev6bda9422018-08-20 11:57:05 +0300497 return lm.stream().filter { i -> i[param].equals(eq) }.collect(java.util.stream.Collectors.counting())
Tomáš Kukráld34fe872017-06-13 10:50:50 +0200498}
Vasyl Saienkofb055b12017-11-23 18:15:23 +0200499
500/**
501 * Execute shell command and return stdout, stderr and status
502 *
503 * @param cmd Command to execute
504 * @return map with stdout, stderr, status keys
505 */
506
507def shCmdStatus(cmd) {
508 def res = [:]
509 def stderr = sh(script: 'mktemp', returnStdout: true).trim()
510 def stdout = sh(script: 'mktemp', returnStdout: true).trim()
511
512 try {
azvyagintsev6bda9422018-08-20 11:57:05 +0300513 def status = sh(script: "${cmd} 1>${stdout} 2>${stderr}", returnStatus: true)
Vasyl Saienkofb055b12017-11-23 18:15:23 +0200514 res['stderr'] = sh(script: "cat ${stderr}", returnStdout: true)
515 res['stdout'] = sh(script: "cat ${stdout}", returnStdout: true)
516 res['status'] = status
517 } finally {
518 sh(script: "rm ${stderr}", returnStdout: true)
519 sh(script: "rm ${stdout}", returnStdout: true)
520 }
521
522 return res
523}
Richard Felkl66a242d2018-01-25 15:27:15 +0100524
Richard Felkl66a242d2018-01-25 15:27:15 +0100525/**
526 * Retry commands passed to body
527 *
528 * @param times Number of retries
Jakub Josef61463c72018-02-13 16:10:56 +0100529 * @param delay Delay between retries (in seconds)
Richard Felkl66a242d2018-01-25 15:27:15 +0100530 * @param body Commands to be in retry block
531 * @return calling commands in body
azvyagintsev6bda9422018-08-20 11:57:05 +0300532 * @example retry ( 3 , 5 ) { function body }* retry{ function body }
Richard Felkl66a242d2018-01-25 15:27:15 +0100533 */
534
535def retry(int times = 5, int delay = 0, Closure body) {
536 int retries = 0
azvyagintsev6bda9422018-08-20 11:57:05 +0300537 while (retries++ < times) {
Richard Felkl66a242d2018-01-25 15:27:15 +0100538 try {
539 return body.call()
azvyagintsev6bda9422018-08-20 11:57:05 +0300540 } catch (e) {
Denis Egorenko900a3af2019-01-14 12:54:56 +0400541 errorMsg(e.toString())
Richard Felkl66a242d2018-01-25 15:27:15 +0100542 sleep(delay)
543 }
544 }
Richard Felkl66a242d2018-01-25 15:27:15 +0100545 throw new Exception("Failed after $times retries")
546}
Dmitry Pyzhov0d0d8522018-05-15 22:37:37 +0300547
Dmitry Pyzhov0d0d8522018-05-15 22:37:37 +0300548/**
549 * Wait for user input with timeout
550 *
551 * @param timeoutInSeconds Timeout
552 * @param options Options for input widget
553 */
azvyagintsev6bda9422018-08-20 11:57:05 +0300554def waitForInputThenPass(timeoutInSeconds, options = [message: 'Ready to go?']) {
555 def userInput = true
556 try {
557 timeout(time: timeoutInSeconds, unit: 'SECONDS') {
558 userInput = input options
559 }
560 } catch (err) { // timeout reached or input false
561 def user = err.getCauses()[0].getUser()
562 if ('SYSTEM' == user.toString()) { // SYSTEM means timeout.
563 println("Timeout, proceeding")
564 } else {
565 userInput = false
566 println("Aborted by: [${user}]")
567 throw err
568 }
Dmitry Pyzhov0d0d8522018-05-15 22:37:37 +0300569 }
azvyagintsev6bda9422018-08-20 11:57:05 +0300570 return userInput
Dmitry Pyzhov0d0d8522018-05-15 22:37:37 +0300571}
Oleksii Grudev9e1d97a2018-06-29 16:04:30 +0300572
573/**
574 * Function receives Map variable as input and sorts it
575 * by values ascending. Returns sorted Map
576 * @param _map Map variable
577 */
578@NonCPS
579def SortMapByValueAsc(_map) {
azvyagintsev6bda9422018-08-20 11:57:05 +0300580 def sortedMap = _map.sort { it.value }
Oleksii Grudev9e1d97a2018-06-29 16:04:30 +0300581 return sortedMap
582}
azvyagintsev99d35842018-08-17 20:26:34 +0300583
584/**
585 * Compare 'old' and 'new' dir's recursively
586 * @param diffData =' Only in new/XXX/infra: secrets.yml
587 Files old/XXX/init.yml and new/XXX/init.yml differ
588 Only in old/XXX/infra: secrets11.yml '
589 *
590 * @return
591 * - new:
592 - XXX/secrets.yml
593 - diff:
594 - XXX/init.yml
595 - removed:
596 - XXX/secrets11.yml
597
598 */
599def diffCheckMultidir(diffData) {
azvyagintsevab5637b2018-08-20 18:18:15 +0300600 common = new com.mirantis.mk.Common()
601 // Some global constants. Don't change\move them!
602 keyNew = 'new'
603 keyRemoved = 'removed'
604 keyDiff = 'diff'
605 def output = [
606 new : [],
607 removed: [],
608 diff : [],
609 ]
610 String pathSep = '/'
611 diffData.each { line ->
612 def job_file = ''
613 def job_type = ''
614 if (line.startsWith('Files old/')) {
615 job_file = new File(line.replace('Files old/', '').tokenize()[0])
616 job_type = keyDiff
617 } else if (line.startsWith('Only in new/')) {
618 // get clean normalized filepath, under new/
619 job_file = new File(line.replace('Only in new/', '').replace(': ', pathSep)).toString()
620 job_type = keyNew
621 } else if (line.startsWith('Only in old/')) {
622 // get clean normalized filepath, under old/
623 job_file = new File(line.replace('Only in old/', '').replace(': ', pathSep)).toString()
624 job_type = keyRemoved
625 } else {
626 common.warningMsg("Not parsed diff line: ${line}!")
627 }
628 if (job_file != '') {
629 output[job_type].push(job_file)
630 }
azvyagintsev99d35842018-08-17 20:26:34 +0300631 }
azvyagintsevab5637b2018-08-20 18:18:15 +0300632 return output
azvyagintsev99d35842018-08-17 20:26:34 +0300633}
634
635/**
636 * Compare 2 folder, file by file
637 * Structure should be:
638 * ${compRoot}/
639 └── diff - diff results will be save here
640 ├── new - input folder with data
641 ├── old - input folder with data
642 ├── pillar.diff - globall diff will be saved here
643 * b_url - usual env.BUILD_URL, to be add into description
azvyagintsev3bbcafe2018-08-20 19:36:16 +0300644 * grepOpts - General grep cmdline; Could be used to pass some magic
645 * regexp into after-diff listing file(pillar.diff)
646 * Example: '-Ev infra/secrets.yml'
azvyagintsev99d35842018-08-17 20:26:34 +0300647 * return - html-based string
648 * TODO: allow to specify subdir for results?
azvyagintsev99d35842018-08-17 20:26:34 +0300649 **/
Denis Egorenko4551f372018-09-11 16:36:13 +0400650
azvyagintsev3bbcafe2018-08-20 19:36:16 +0300651def comparePillars(compRoot, b_url, grepOpts) {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000652
azvyagintsevab5637b2018-08-20 18:18:15 +0300653 // Some global constants. Don't change\move them!
654 keyNew = 'new'
655 keyRemoved = 'removed'
656 keyDiff = 'diff'
657 def diff_status = 0
658 // FIXME
659 httpWS = b_url + '/artifact/'
660 dir(compRoot) {
azvyagintsev3bbcafe2018-08-20 19:36:16 +0300661 // If diff empty - exit 0
662 diff_status = sh(script: 'diff -q -r old/ new/ > pillar.diff',
azvyagintsevab5637b2018-08-20 18:18:15 +0300663 returnStatus: true,
664 )
azvyagintsev24d49652018-08-21 19:33:51 +0300665 }
azvyagintsevc0fe1442018-08-21 20:01:34 +0300666 // Unfortunately, diff not able to work with dir-based regexp
667 if (diff_status == 1 && grepOpts) {
668 dir(compRoot) {
669 grep_status = sh(script: """
azvyagintsev3bbcafe2018-08-20 19:36:16 +0300670 cp -v pillar.diff pillar_orig.diff
671 grep ${grepOpts} pillar_orig.diff > pillar.diff
672 """,
azvyagintsevc0fe1442018-08-21 20:01:34 +0300673 returnStatus: true
674 )
azvyagintsevf6e77912018-09-07 15:41:09 +0300675 if (grep_status == 1) {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000676 warningMsg("Grep regexp ${grepOpts} removed all diff!")
azvyagintsevc0fe1442018-08-21 20:01:34 +0300677 diff_status = 0
azvyagintsevb99f87c2018-08-21 19:43:59 +0300678 }
azvyagintsev3bbcafe2018-08-20 19:36:16 +0300679 }
azvyagintsevc0fe1442018-08-21 20:01:34 +0300680 }
681 // Set job description
Denis Egorenko4551f372018-09-11 16:36:13 +0400682 description = ''
azvyagintsevc0fe1442018-08-21 20:01:34 +0300683 if (diff_status == 1) {
azvyagintsevab5637b2018-08-20 18:18:15 +0300684 // Analyse output file and prepare array with results
685 String data_ = readFile file: "${compRoot}/pillar.diff"
686 def diff_list = diffCheckMultidir(data_.split("\\r?\\n"))
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000687 infoMsg(diff_list)
azvyagintsevab5637b2018-08-20 18:18:15 +0300688 dir(compRoot) {
689 if (diff_list[keyDiff].size() > 0) {
690 if (!fileExists('diff')) {
691 sh('mkdir -p diff')
692 }
693 description += '<b>CHANGED</b><ul>'
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000694 infoMsg('Changed items:')
Denis Egorenko4551f372018-09-11 16:36:13 +0400695 def stepsForParallel = [:]
696 stepsForParallel.failFast = true
697 diff_list[keyDiff].each {
698 stepsForParallel.put("Differ for:${it}",
699 {
700 // We don't want to handle sub-dirs structure. So, simply make diff 'flat'
701 def item_f = it.toString().replace('/', '_')
702 description += "<li><a href=\"${httpWS}/diff/${item_f}/*view*/\">${it}</a></li>"
703 // Generate diff file
704 def diff_exit_code = sh([
705 script : "diff -U 50 old/${it} new/${it} > diff/${item_f}",
706 returnStdout: false,
707 returnStatus: true,
708 ])
709 // catch normal errors, diff should always return 1
710 if (diff_exit_code != 1) {
711 error 'Error with diff file generation'
712 }
713 })
azvyagintsevab5637b2018-08-20 18:18:15 +0300714 }
Denis Egorenko4551f372018-09-11 16:36:13 +0400715
716 parallel stepsForParallel
azvyagintsevab5637b2018-08-20 18:18:15 +0300717 }
718 if (diff_list[keyNew].size() > 0) {
719 description += '<b>ADDED</b><ul>'
720 for (item in diff_list[keyNew]) {
721 description += "<li><a href=\"${httpWS}/new/${item}/*view*/\">${item}</a></li>"
722 }
723 }
724 if (diff_list[keyRemoved].size() > 0) {
725 description += '<b>DELETED</b><ul>'
726 for (item in diff_list[keyRemoved]) {
727 description += "<li><a href=\"${httpWS}/old/${item}/*view*/\">${item}</a></li>"
728 }
729 }
azvyagintsev99d35842018-08-17 20:26:34 +0300730
azvyagintsevab5637b2018-08-20 18:18:15 +0300731 }
azvyagintsev99d35842018-08-17 20:26:34 +0300732 }
azvyagintsevab5637b2018-08-20 18:18:15 +0300733
734 if (description != '') {
735 dir(compRoot) {
736 archiveArtifacts([
737 artifacts : '**',
738 allowEmptyArchive: true,
739 ])
740 }
741 return description.toString()
742 } else {
azvyagintseva57c82a2018-09-20 12:17:24 +0300743 return '<b>No job changes</b>'
azvyagintsevab5637b2018-08-20 18:18:15 +0300744 }
azvyagintsev99d35842018-08-17 20:26:34 +0300745}
azvyagintsevab5637b2018-08-20 18:18:15 +0300746
747/**
748 * Simple function, to get basename from string.
749 * line - path-string
750 * remove_ext - string, optionl. Drop file extenstion.
751 **/
752def GetBaseName(line, remove_ext) {
753 filename = line.toString().split('/').last()
754 if (remove_ext && filename.endsWith(remove_ext.toString())) {
755 filename = filename.take(filename.lastIndexOf(remove_ext.toString()))
756 }
757 return filename
Vasyl Saienko00ef98b2018-09-05 10:34:32 +0300758}
Vasyl Saienko723cbbc2018-09-05 11:08:52 +0300759
760/**
azvyagintsevf6e77912018-09-07 15:41:09 +0300761 * Return colored string of specific stage in stageMap
762 *
763 * @param stageMap LinkedHashMap object.
764 * @param stageName The name of current stage we are going to execute.
765 * @param color Text color
766 * */
767def getColoredStageView(stageMap, stageName, color) {
768 def stage = stageMap[stageName]
769 def banner = []
770 def currentStageIndex = new ArrayList<String>(stageMap.keySet()).indexOf(stageName)
771 def numberOfStages = stageMap.keySet().size() - 1
Vasyl Saienko723cbbc2018-09-05 11:08:52 +0300772
Vasyl Saienko723cbbc2018-09-05 11:08:52 +0300773 banner.add(getColorizedString(
azvyagintsevf6e77912018-09-07 15:41:09 +0300774 "=========== Stage ${currentStageIndex}/${numberOfStages}: ${stageName} ===========", color))
775 for (stage_item in stage.keySet()) {
776 banner.add(getColorizedString(
777 "${stage_item}: ${stage[stage_item]}", color))
Vasyl Saienko723cbbc2018-09-05 11:08:52 +0300778 }
azvyagintsevf6e77912018-09-07 15:41:09 +0300779 banner.add('\n')
780
781 return banner
782}
783
784/**
785 * Pring stageMap to console with specified color
786 *
787 * @param stageMap LinkedHashMap object with stages information.
788 * @param currentStage The name of current stage we are going to execute.
789 *
790 * */
791def printCurrentStage(stageMap, currentStage) {
792 print getColoredStageView(stageMap, currentStage, "cyan").join('\n')
793}
794
795/**
796 * Pring stageMap to console with specified color
797 *
798 * @param stageMap LinkedHashMap object.
799 * @param baseColor Text color (default white)
800 * */
801def printStageMap(stageMap, baseColor = "white") {
802 def banner = []
803 def index = 0
804 for (stage_name in stageMap.keySet()) {
805 banner.addAll(getColoredStageView(stageMap, stage_name, baseColor))
806 }
807 print banner.join('\n')
808}
809
810/**
811 * Wrap provided code in stage, and do interactive retires if needed.
812 *
813 * @param stageMap LinkedHashMap object with stages information.
814 * @param currentStage The name of current stage we are going to execute.
815 * @param target Target host to execute stage on.
816 * @param interactive Boolean flag to specify if interaction with user is enabled.
817 * @param body Command to be in stage block.
818 * */
819def stageWrapper(stageMap, currentStage, target, interactive = true, Closure body) {
820 def common = new com.mirantis.mk.Common()
821 def banner = []
822
823 printCurrentStage(stageMap, currentStage)
824
825 stage(currentStage) {
Vasyl Saienkobc6debb2018-09-10 14:08:09 +0300826 if (interactive){
azvyagintsevf6e77912018-09-07 15:41:09 +0300827 input message: getColorizedString("We are going to execute stage \'${currentStage}\' on the following target ${target}.\nPlease review stage information above.", "yellow")
Vasyl Saienkobc6debb2018-09-10 14:08:09 +0300828 }
829 try {
Vasyl Saienkobc6debb2018-09-10 14:08:09 +0300830 stageMap[currentStage]['Status'] = "SUCCESS"
Victor Ryzhenkin49d67812019-01-09 15:28:21 +0400831 return body.call()
Vasyl Saienkobc6debb2018-09-10 14:08:09 +0300832 } catch (Exception err) {
833 def msg = "Stage ${currentStage} failed with the following exception:\n${err}"
834 print getColorizedString(msg, "yellow")
835 common.errorMsg(err)
836 if (interactive) {
837 input message: getColorizedString("Please make sure problem is fixed to proceed with retry. Ready to proceed?", "yellow")
838 stageMap[currentStage]['Status'] = "RETRYING"
839 stageWrapper(stageMap, currentStage, target, interactive, body)
840 } else {
841 error(msg)
azvyagintsevf6e77912018-09-07 15:41:09 +0300842 }
Vasyl Saienkobc6debb2018-09-10 14:08:09 +0300843 }
azvyagintsevf6e77912018-09-07 15:41:09 +0300844 }
845}
846
847/**
848 * Ugly transition solution for internal tests.
849 * 1) Check input => transform to static result, based on runtime and input
850 * 2) Check remote-binary repo for exact resource
azvyagintsevf6fce3d2018-12-28 15:30:33 +0200851 * Return: changes each linux_system_* cto false, in case broken url in some of them
852 */
azvyagintsevf6e77912018-09-07 15:41:09 +0300853
854def checkRemoteBinary(LinkedHashMap config, List extraScmExtensions = []) {
855 def common = new com.mirantis.mk.Common()
azvyagintsevf6fce3d2018-12-28 15:30:33 +0200856 def res = [:]
azvyagintsevf6e77912018-09-07 15:41:09 +0300857 res['MirrorRoot'] = config.get('globalMirrorRoot', env["BIN_MIRROR_ROOT"] ? env["BIN_MIRROR_ROOT"] : "http://mirror.mirantis.com/")
858 // Reclass-like format's. To make life eazy!
azvyagintsev603d95b2018-11-09 15:37:10 +0200859 res['mcp_version'] = config.get('mcp_version', env["BIN_APT_MCP_VERSION"] ? env["BIN_APT_MCP_VERSION"] : 'nightly')
azvyagintsevf6fce3d2018-12-28 15:30:33 +0200860 res['linux_system_repo_url'] = config.get('linux_system_repo_url', env['BIN_linux_system_repo_url'] ? env['BIN_linux_system_repo_url'] : "${res['MirrorRoot']}/${res['mcp_version']}/")
861 res['linux_system_repo_ubuntu_url'] = config.get('linux_system_repo_ubuntu_url', env['BIN_linux_system_repo_ubuntu_url'] ? env['BIN_linux_system_repo_ubuntu_url'] : "${res['MirrorRoot']}/${res['mcp_version']}/ubuntu/")
862 res['linux_system_repo_mcp_salt_url'] = config.get('linux_system_repo_mcp_salt_url', env['BIN_linux_system_repo_mcp_salt_url'] ? env['BIN_linux_system_repo_mcp_salt_url'] : "${res['MirrorRoot']}/${res['mcp_version']}/salt-formulas/")
azvyagintsevf6e77912018-09-07 15:41:09 +0300863
864 if (config.get('verify', true)) {
azvyagintsevf6fce3d2018-12-28 15:30:33 +0200865 res.each { key, val ->
866 if (key.toString().startsWith('linux_system_repo')) {
867 def MirrorRootStatus = sh(script: "wget --auth-no-challenge --spider ${val} 2>/dev/null", returnStatus: true)
868 if (MirrorRootStatus != 0) {
869 common.warningMsg("Resource: '${key}' at '${val}' not exist!")
870 res[key] = false
871 }
872 }
azvyagintsevf6e77912018-09-07 15:41:09 +0300873 }
874 }
875 return res
Vasyl Saienko723cbbc2018-09-05 11:08:52 +0300876}
Denis Egorenkoeded0d42018-09-26 13:25:49 +0400877
878/**
879 * Workaround to update env properties, like GERRIT_* vars,
880 * which should be passed from upstream job to downstream.
881 * Will not fail entire job in case any issues.
882 * @param envVar - EnvActionImpl env job
883 * @param extraVars - Multiline YAML text with extra vars
884 */
885def mergeEnv(envVar, extraVars) {
Denis Egorenko6d3cc232018-09-27 17:42:58 +0400886 def common = new com.mirantis.mk.Common()
Denis Egorenkoeded0d42018-09-26 13:25:49 +0400887 try {
888 def extraParams = readYaml text: extraVars
889 for(String key in extraParams.keySet()) {
890 envVar[key] = extraParams[key]
891 common.warningMsg("Parameter ${key} is updated from EXTRA vars.")
892 }
893 } catch (Exception e) {
894 common.errorMsg("Can't update env parameteres, because: ${e.toString()}")
895 }
896}
Denis Egorenko599bd632018-09-28 15:24:37 +0400897
898/**
899 * Wrapper around parallel pipeline function
900 * with ability to restrict number of parallel threads
901 * running simultaneously
902 *
903 * @param branches - Map with Clousers to be executed
904 * @param maxParallelJob - Integer number of parallel threads allowed
905 * to run simultaneously
906 */
907def runParallel(branches, maxParallelJob = 10) {
908 def runningSteps = 0
909 branches.each { branchName, branchBody ->
910 if (branchBody instanceof Closure) {
911 branches[branchName] = {
912 while (!(runningSteps < maxParallelJob)) {
913 continue
914 }
915 runningSteps += 1
916 branchBody.call()
917 runningSteps -= 1
918 }
919 }
920 }
921 if (branches) {
922 parallel branches
923 }
924}
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000925
926/**
927 * Ugly processing basic funcs with /etc/apt
Denis Egorenko5cea1412018-10-18 16:40:11 +0400928 * @param repoConfig YAML text or Map
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000929 * Example :
Denis Egorenko5cea1412018-10-18 16:40:11 +0400930 repoConfig = '''
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000931 ---
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000932 aprConfD: |-
Denis Egorenkoe02a1b22018-10-19 17:47:53 +0400933 APT::Get::AllowUnauthenticated 'true';
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000934 repo:
Denis Egorenkoe02a1b22018-10-19 17:47:53 +0400935 mcp_saltstack:
936 source: "deb [arch=amd64] http://mirror.mirantis.com/nightly/saltstack-2017.7/xenial xenial main"
937 pin:
938 - package: "libsodium18"
939 pin: "release o=SaltStack"
940 priority: 50
941 - package: "*"
942 pin: "release o=SaltStack"
943 priority: "1100"
944 repo_key: "http://mirror.mirantis.com/public.gpg"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000945 '''
946 *
947 */
948
Denis Egorenko5cea1412018-10-18 16:40:11 +0400949def debianExtraRepos(repoConfig) {
950 def config = null
951 if (repoConfig instanceof Map) {
952 config = repoConfig
953 } else {
954 config = readYaml text: repoConfig
955 }
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000956 if (config.get('repo', false)) {
957 for (String repo in config['repo'].keySet()) {
Denis Egorenko395aa212018-10-11 15:11:28 +0400958 source = config['repo'][repo]['source']
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000959 warningMsg("Write ${source} > /etc/apt/sources.list.d/${repo}.list")
960 sh("echo '${source}' > /etc/apt/sources.list.d/${repo}.list")
Denis Egorenko395aa212018-10-11 15:11:28 +0400961 if (config['repo'][repo].containsKey('repo_key')) {
962 key = config['repo'][repo]['repo_key']
963 sh("wget -O - '${key}' | apt-key add -")
964 }
Denis Egorenkoe02a1b22018-10-19 17:47:53 +0400965 if (config['repo'][repo]['pin']) {
966 def repoPins = []
967 for (Map pin in config['repo'][repo]['pin']) {
968 repoPins.add("Package: ${pin['package']}")
969 repoPins.add("Pin: ${pin['pin']}")
970 repoPins.add("Pin-Priority: ${pin['priority']}")
Denis Egorenko1c93d122018-11-02 12:14:05 +0400971 // additional empty line between pins
972 repoPins.add('\n')
Denis Egorenkoe02a1b22018-10-19 17:47:53 +0400973 }
974 if (repoPins) {
975 repoPins.add(0, "### Extra ${repo} repo pin start ###")
976 repoPins.add("### Extra ${repo} repo pin end ###")
977 repoPinning = repoPins.join('\n')
978 warningMsg("Adding pinning \n${repoPinning}\n => /etc/apt/preferences.d/${repo}")
979 sh("echo '${repoPinning}' > /etc/apt/preferences.d/${repo}")
980 }
981 }
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000982 }
983 }
984 if (config.get('aprConfD', false)) {
985 for (String pref in config['aprConfD'].tokenize('\n')) {
986 warningMsg("Adding ${pref} => /etc/apt/apt.conf.d/99setupAndTestNode")
987 sh("echo '${pref}' >> /etc/apt/apt.conf.d/99setupAndTestNode")
988 }
989 sh('cat /etc/apt/apt.conf.d/99setupAndTestNode')
990 }
991}