-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfileDeclFFOnlyCheckoutSCM
46 lines (44 loc) · 1.1 KB
/
JenkinsfileDeclFFOnlyCheckoutSCM
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
44
45
46
def pattern = 'PipeDeclFFOnlyCheckoutSCM'
def triggerBranchPattern = '*/ready' + pattern + '/*'
def integrationBranch = 'master' + pattern
pipeline{
agent none
stages {
stage ('Checkout') {
agent {
label 'master'
}
steps {
checkout([
$class: 'GitSCM',
branches: [[name: triggerBranchPattern ]],
userRemoteConfigs: [[
name: 'origin',
url: '[email protected]:bicschneider/test-git-phlow-plugin.git'
]],
extensions: [
pretestedIntegration(
gitIntegrationStrategy: ffonly(),
integrationBranch: integrationBranch,
repoName: 'origin')
,
[ $class: 'ChangelogToBranch',
options: [compareRemote: 'origin', compareTarget: integrationBranch]
],
[$class: 'PruneStaleBranch']
]
])
// sh '''
// if [ -e ./build_failed.md ]; then
// exit 1
// fi
// '''
}
post {
always {
pretestedIntegrationPublisher()
}
}
}
}
}