forked from Activiti/Activiti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
109 lines (95 loc) · 3.02 KB
/
Jenkinsfile
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
pipeline {
agent {
label "jenkins-maven-java11"
}
environment {
ORG = 'activiti'
APP_NAME = 'activiti-dependencies'
CHARTMUSEUM_CREDS = credentials('jenkins-x-chartmuseum')
}
stages {
stage('CI Build and push snapshot') {
when {
branch 'PR-*'
}
environment {
PREVIEW_VERSION = "7.1.0-$BRANCH_NAME-$BUILD_NUMBER"
PREVIEW_NAMESPACE = "$APP_NAME-$BRANCH_NAME".toLowerCase()
HELM_RELEASE = "$PREVIEW_NAMESPACE".toLowerCase()
}
steps {
container('maven') {
sh "mvn versions:set -DnewVersion=$PREVIEW_VERSION"
sh "mvn install -DskipITs"
// sh "mvn deploy -DskipTests -DskipITs"
}
}
}
stage('Build Release') {
when {
branch 'develop'
}
steps {
container('maven') {
// ensure we're not on a detached head
sh "git checkout develop"
sh "git config --global credential.helper store"
sh "jx step git credentials"
// so we can retrieve the version in later steps
sh "echo \$(jx-release-version) > VERSION"
sh "mvn versions:set -DnewVersion=\$(cat VERSION)"
sh 'mvn clean verify -DskipITs'
sh "git add --all"
sh "git commit -m \"Release \$(cat VERSION)\" --allow-empty"
sh "git tag -fa v\$(cat VERSION) -m \"Release version \$(cat VERSION)\""
sh "git push origin v\$(cat VERSION)"
}
container('maven') {
sh 'mvn clean deploy -DskipTests'
sh 'export VERSION=`cat VERSION`'
sh "git config --global credential.helper store"
sh "jx step git credentials"
sh "make updatebot/push-version"
}
}
}
stage('Build Release from Tag') {
when {
tag '*RELEASE'
}
steps {
container('maven') {
// ensure we're not on a detached head
sh "git checkout $TAG_NAME"
sh "git config --global credential.helper store"
sh "jx step git credentials"
// so we can retrieve the version in later steps
sh "echo \$TAG_NAME > VERSION"
sh "mvn versions:set -DnewVersion=\$(cat VERSION)"
}
container('maven') {
sh '''
mvn clean deploy -P !alfresco -P central
'''
sh 'export VERSION=`cat VERSION`'
sh "git config --global credential.helper store"
sh "jx step git credentials"
sh "echo pushing with update using version \$(cat VERSION)"
sh "make updatebot/push-version"
}
}
}
}
post {
failure {
slackSend(
channel: "#activiti-community-builds",
color: "danger",
message: "$BUILD_URL"
)
}
always {
cleanWs()
}
}
}