forked from apache/incubator-kie-kogito-runtimes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile.drools
240 lines (227 loc) · 7.38 KB
/
Jenkinsfile.drools
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
@Library('jenkins-pipeline-shared-libraries')_
import org.kie.jenkins.MavenCommand
pipeline {
agent {
label 'kie-rhel7 && kie-mem16g'
}
tools {
maven 'kie-maven-3.6.2'
jdk 'kie-jdk11'
}
options {
timeout(time: 360, unit: 'MINUTES')
}
environment {
// Some generated env is also defined into .jenkins/dsl/jobs.groovy file
KOGITO_CI_EMAIL_TO = credentials("${JENKINS_EMAIL_CREDS_ID}")
MAVEN_OPTS = '-Xms1024m -Xmx4g'
// Set into 'Initialize' stage
// DROOLS_VERSION
}
stages {
stage('Initialize') {
steps {
script {
checkoutDroolsRepo()
checkoutRepo('kogito-runtimes')
checkoutRepo('kogito-runtimes', 'integration-tests')
checkoutOptaplannerRepo()
checkoutRepo('kogito-apps')
checkoutRepo('kogito-examples')
checkoutRepo('kogito-examples', 'kogito-examples-persistence')
checkoutRepo('kogito-examples', 'kogito-examples-events')
if (params.DROOLS_VERSION) {
currentBuild.displayName = "Check against ${DROOLS_VERSION}"
} else {
currentBuild.displayName = "Check against Drools snapshot"
}
}
}
}
stage('Retrieve drools snapshot version') {
when { expression { return !params.DROOLS_VERSION } }
steps {
script {
dir('drools') {
// query mvn to get the latest version
env.DROOLS_VERSION = """${sh (
script: 'mvn org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -Dexpression=project.version -q -DforceStdout',
returnStdout: true
).trim()}"""
assert env.DROOLS_VERSION != ''
echo "Latest kie7 version is: ${env.DROOLS_VERSION}"
}
}
}
}
stage('Build kogito-runtimes') {
steps {
script {
getMavenCommandWithDroolsVersion('kogito-runtimes')
.run('clean install')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Check Runtimes integration-tests with persistence') {
steps {
script {
getMavenCommandWithDroolsVersion('integration-tests')
.withProfiles(['persistence'])
.run('clean verify')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build optaplanner') {
steps {
script {
getMavenCommandWithDroolsVersion('optaplanner')
.run('clean install')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build kogito-apps') {
steps {
script {
getMavenCommandWithDroolsVersion('kogito-apps')
.run('clean install')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build kogito-examples') {
steps {
script {
getMavenCommandWithDroolsVersion('kogito-examples')
.run('clean install')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build kogito-examples with persistence') {
steps {
script {
getMavenCommandWithDroolsVersion('kogito-examples-persistence')
.withProfiles(['persistence'])
.run('clean verify')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build kogito-examples with events') {
steps {
script {
getMavenCommandWithDroolsVersion('kogito-examples-events')
.withProfiles(['events'])
.run('clean verify')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
}
post {
unsuccessful {
sendNotification()
}
always {
script {
junit '**/target/surefire-reports/**/*.xml, **/target/failsafe-reports/**/*.xml'
}
}
cleanup {
script {
util.cleanNode('docker')
}
}
}
}
void sendNotification() {
if (!params.DROOLS_VERSION) {
emailext body: "Kogito daily Drools #${BUILD_NUMBER} was: ${currentBuild.currentResult}\nPlease look here: ${BUILD_URL}",
subject: "[${params.BUILD_BRANCH_NAME}][d] Runtimes Drools snapshot",
to: env.KOGITO_CI_EMAIL_TO
}
// Do not send a notification in case DROOLS_VERSION was given
}
void checkoutRepo(String repoName, String dirName=repoName) {
dir(dirName) {
checkout(githubscm.resolveRepository(repoName, params.GIT_AUTHOR, params.BUILD_BRANCH_NAME, false))
}
}
void checkoutDroolsRepo() {
dir('drools') {
checkout(githubscm.resolveRepository('drools', 'kiegroup', 'master', false))
}
}
void checkoutOptaplannerRepo() {
String targetBranch = params.BUILD_BRANCH_NAME
String [] versionSplit = targetBranch.split("\\.")
if (versionSplit.length == 3
&& versionSplit[0].isNumber()
&& versionSplit[1].isNumber()
&& versionSplit[2] == 'x') {
targetBranch = "${Integer.parseInt(versionSplit[0]) + 7}.${versionSplit[1]}.x"
} else {
echo "Cannot parse branch as release branch so going further with current value: ${targetBranch}"
}
dir('optaplanner') {
checkout(githubscm.resolveRepository('optaplanner', params.GIT_AUTHOR, targetBranch, false))
}
}
MavenCommand getMavenCommandWithDroolsVersion(String directory) {
mvnCmd = new MavenCommand(this, ['-fae'])
.withSettingsXmlId('kogito_release_settings')
.inDirectory(directory)
.withProperty('version.org.kie7', "${DROOLS_VERSION}")
if (params.DROOLS_REPOSITORY) {
mvnCmd.withDependencyRepositoryInSettings('drools_repo', params.DROOLS_REPOSITORY)
}
return mvnCmd
}
void cleanContainers() {
cloud.cleanContainersAndImages('docker')
}