-
Notifications
You must be signed in to change notification settings - Fork 0
/
JenkinsfileScriptedCheckoutSCM
43 lines (40 loc) · 1.12 KB
/
JenkinsfileScriptedCheckoutSCM
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
34
35
36
37
38
39
40
41
42
43
def pattern = 'PipeScriptedCheckoutSCM'
def triggerBranchPattern = '*/ready' + pattern + '/*'
def integrationBranch = 'master' + pattern
node {
stage ('Checkout'){
try {
checkout([
$class: 'GitSCM',
branches: [[name: triggerBranchPattern ]],
userRemoteConfigs: [[
name: 'origin',
url: '[email protected]:bicschneider/test-git-phlow-plugin.git'
]],
extensions: [
pretestedIntegration(
gitIntegrationStrategy: accumulated(),
integrationBranch: integrationBranch,
repoName: 'origin')
,
[ $class: 'ChangelogToBranch',
options: [compareRemote: 'origin', compareTarget: integrationBranch]
],
[$class: 'PruneStaleBranch']
]
])
} catch(Exception e) {
echo "Leave further processing to publisher"
}
// try {
// sh '''
// if [ -e ./build_failed.md ]; then
// exit 1
// fi
// '''
// } catch(Exception e) {
// currentBuild.result = 'UNSTABLE'
// }
pretestedIntegrationPublisher()
}
}