forked from apache/incubator-kie-kogito-runtimes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile.quarkus
231 lines (220 loc) · 6.6 KB
/
Jenkinsfile.quarkus
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
@Library('jenkins-pipeline-shared-libraries')_
import org.kie.jenkins.MavenCommand
pipeline {
agent {
label 'kie-rhel7 && kie-mem16g'
}
environment {
// QUARKUS_BRANCH should be defined directly into the job environment
KOGITO_CI_EMAIL_TO = credentials("${JENKINS_EMAIL_CREDS_ID}")
MAVEN_OPTS = '-Xms1024m -Xmx4g'
}
tools {
maven 'kie-maven-3.6.3'
jdk 'kie-jdk11'
}
options {
timeout(time: 360, unit: 'MINUTES')
}
stages {
stage('Initialize') {
steps {
script {
checkoutQuarkusRepo()
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')
}
}
}
stage('Build quarkus') {
steps {
script {
getMavenCommand('quarkus', false)
.withProperty('quickly')
.run('clean install')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build kogito-runtimes') {
steps {
script {
getMavenCommand('kogito-runtimes')
.run('clean install')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Check Runtimes integration-tests with persistence') {
steps {
script {
getMavenCommand('integration-tests')
.withProfiles(['persistence'])
.run('clean verify')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build optaplanner') {
steps {
script {
getMavenCommand('optaplanner')
.run('clean install')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build kogito-apps') {
steps {
script {
getMavenCommand('kogito-apps')
.run('clean install')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build kogito-examples') {
steps {
script {
getMavenCommand('kogito-examples')
.run('clean install')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build kogito-examples with persistence') {
steps {
script {
getMavenCommand('kogito-examples-persistence')
.withProfiles(['persistence'])
.run('clean verify')
}
}
post {
always {
script {
cleanContainers()
}
}
}
}
stage('Build kogito-examples with events') {
steps {
script {
getMavenCommand('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() {
emailext body: 'Kogito daily Quarkus ' + getQuarkusBranch() + ' #${BUILD_NUMBER} was: ' + "${currentBuild.currentResult}" + '\n' +
'Please look here: ${BUILD_URL} ',
subject: "[${params.BUILD_BRANCH_NAME}][d] Runtimes Quarkus ${getQuarkusBranch()}",
to: env.KOGITO_CI_EMAIL_TO
}
void checkoutRepo(String repoName, String dirName=repoName) {
dir(dirName) {
checkout(githubscm.resolveRepository(repoName, params.GIT_AUTHOR, params.BUILD_BRANCH_NAME, false))
}
}
void checkoutQuarkusRepo() {
dir('quarkus') {
checkout(githubscm.resolveRepository('quarkus', 'quarkusio', getQuarkusBranch(), 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 getMavenCommand(String directory, boolean addQuarkusVersion=true) {
def mvnCmd = new MavenCommand(this, ['-fae'])
.withSettingsXmlId('kogito_release_settings')
.inDirectory(directory)
if (addQuarkusVersion) {
mvnCmd.withProperty('version.io.quarkus', '999-SNAPSHOT')
}
return mvnCmd
}
String getQuarkusBranch() {
return env['QUARKUS_BRANCH'] ?: 'main'
}
void cleanContainers() {
cloud.cleanContainersAndImages('docker')
}