forked from dennyzhang/cheatsheet-jenkins-groovy-A4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkinsfile-finally.groovy
executable file
·33 lines (32 loc) · 1010 Bytes
/
jenkinsfile-finally.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!groovy
//-------------------------------------------------------------------
// @copyright 2018 DennyZhang.com
// Licensed under MIT
// https://www.dennyzhang.com/wp-content/mit_license.txt
//
// File: jenkinsfile-finally.groovy
// Author : Denny <https://www.dennyzhang.com/contact>
// Link: https://cheatsheet.dennyzhang.com/cheatsheet-jenkins-groovy-a4
// --
// Created : <2018-04-20>
// Updated: Time-stamp: <2019-04-29 15:42:43>
//-------------------------------------------------------------------
node {
try {
def seconds = readFile("/tmp/test.txt")
echo "seconds begin"
echo seconds
echo "seconds done"
parallel firstBranch: {
// do something
build job: 'SleepAnHour', parameters: [string(name: 'sleep_seconds', value: seconds)]
}, secondBranch: {
// do something else
build job: 'SleepTwoHours', parameters: [string(name: 'sleep_seconds', value: seconds)]
},
failFast: true
}
finally {
echo "finally"
}
}