forked from jenkinsci/plugin-compat-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
executable file
·235 lines (199 loc) · 8.21 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
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
properties([
buildDiscarder(logRotator(numToKeepStr: '10')),
disableConcurrentBuilds(abortPrevious: true)
])
// TODO: Move it to Jenkins Pipeline Library
/* These platforms correspond to labels in ci.jenkins.io, see:
* https://github.com/jenkins-infra/documentation/blob/master/ci.adoc
*/
List platforms = ['linux', 'windows']
Map branches = [failFast: true]
for (int i = 0; i < platforms.size(); ++i) {
String label = platforms[i]
boolean publishing = (label == 'linux')
branches[label] = {
node(label) {
stage('Checkout') {
if (isUnix()) { // have to clean the workspace as root
sh 'docker run --rm -v $(pwd):/src -w /src maven:3.6.0-jdk-8 sh -c "rm -rf * .[a-zA-Z]*" || :'
}
checkout scm
}
stage('Build') {
timeout(30) {
def args = ['clean', 'install', '-Dmaven.test.failure.ignore=true']
if (publishing) {
args += '-Dset.changelist'
}
infra.runMaven(args)
}
}
stage('Archive') {
/* Archive the test results */
junit '**/target/surefire-reports/TEST-*.xml'
if (publishing) {
recordIssues(
enabledForFailure: true, aggregatingResults: true,
tools: [java(), spotBugs(pattern: '**/target/findbugsXml.xml')]
)
infra.prepareToPublishIncrementals()
}
}
}
}
}
parallel(branches)
// Integration testing, using a locally built Docker image
def itBranches = [:]
itBranches['buildtriggerbadge:2.11 tests success on JDK11'] = {
node('docker') {
checkout scm
def settingsXML="mvn-settings.xml"
infra.retrieveMavenSettingsFile(settingsXML)
// should we build the image only once and somehow export and stash/unstash it then?
// not sure this would be that quicker
stage('Build Docker Image') {
sh 'make docker'
}
stage('Download Jenkins 2.164.1') {
sh '''
curl -sL http://mirrors.jenkins.io/war-stable/2.164.1/jenkins.war --output jenkins.war
echo "65543f5632ee54344f3351b34b305702df12393b3196a95c3771ddb3819b220b jenkins.war" | sha256sum --check
'''
}
stage("Run known successful case(s)") {
sh '''docker run --rm \
-v $(pwd)/jenkins.war:/pct/jenkins.war:ro \
-v $(pwd)/out:/pct/out -e JDK_VERSION=11 \
-v $(pwd)/mvn-settings.xml:/pct/m2-settings.xml \
-e ARTIFACT_ID=buildtriggerbadge -e VERSION=buildtriggerbadge-2.11 \
jenkins/pct
'''
archiveArtifacts artifacts: "out/**"
sh 'cat out/pct-report.html | grep "Tests : Success"'
}
}
}
itBranches['buildtriggerbadge:2.11 tests success on JDK8'] = {
node('docker') {
checkout scm
def settingsXML="mvn-settings.xml"
infra.retrieveMavenSettingsFile(settingsXML)
// should we build the image only once and somehow export and stash/unstash it then?
// not sure this would be that quicker
stage('Build Docker Image') {
sh 'make docker'
}
stage('Download Jenkins 2.164.1') {
sh '''
curl -sL http://mirrors.jenkins.io/war-stable/2.164.1/jenkins.war --output jenkins.war
echo "65543f5632ee54344f3351b34b305702df12393b3196a95c3771ddb3819b220b jenkins.war" | sha256sum --check
'''
}
stage("Run known successful case(s)") {
sh '''docker run --rm \
-v $(pwd)/jenkins.war:/pct/jenkins.war:ro \
-v $(pwd)/mvn-settings.xml:/pct/m2-settings.xml \
-v $(pwd)/out:/pct/out -e JDK_VERSION=8 \
-e ARTIFACT_ID=buildtriggerbadge -e VERSION=buildtriggerbadge-2.11 \
jenkins/pct
'''
archiveArtifacts artifacts: "out/**"
sh 'cat out/pct-report.html | grep "Tests : Success"'
}
}
}
itBranches['google-compute-engine:4.3.3 tests on retrieving the test report'] = {
node('docker') {
checkout scm
def settingsXML="mvn-settings.xml"
infra.retrieveMavenSettingsFile(settingsXML)
stage('Build Docker Image') {
sh 'make docker'
}
stage('Download Jenkins 2.263.3') {
sh '''
curl -sL http://mirrors.jenkins.io/war-stable/2.263.3/jenkins.war --output jenkins.war
echo "a355f58c26afaf2ed08cedeacdbc0de85c821bb7a15edac8255f7a74c6aedf53 jenkins.war" | sha256sum --check
'''
}
stage("Execute PCT and evaluate test report") {
sh '''docker run --rm \
-v $(pwd)/jenkins.war:/pct/jenkins.war:ro \
-v $(pwd)/mvn-settings.xml:/pct/m2-settings.xml \
-v $(pwd)/out:/pct/out -e JDK_VERSION=8 \
-e ARTIFACT_ID=google-compute-engine -e VERSION=google-compute-engine-4.3.3 -e FAIL_ON_ERROR=false\
jenkins/pct
'''
archiveArtifacts artifacts: "out/**"
sh 'cat out/pct-report.xml | grep "TEST_FAILURES"'
}
}
}
itBranches['WAR with non-default groupId plugins - smoke test'] = {
node('docker') {
checkout scm
stage('Build Docker Image') {
sh 'make docker'
}
dir("src/it/war-with-plugins-test") {
def settingsXML="mvn-settings.xml"
infra.retrieveMavenSettingsFile(settingsXML)
stage('Build the custom WAR file') {
infra.runMaven(["clean", "package"])
}
stage('Run the integration test') {
sh '''docker run --rm \
-v $(pwd)/tmp/output/target/war-with-plugins-test-1.0.war:/pct/jenkins.war:ro \
-v $(pwd)/mvn-settings.xml:/pct/m2-settings.xml \
-v $(pwd)/out:/pct/out -e JDK_VERSION=8 \
-e ARTIFACT_ID=artifact-manager-s3 -e VERSION=artifact-manager-s3-1.6 \
jenkins/pct \
-overridenPlugins 'io.jenkins:configuration-as-code=1.20'
'''
archiveArtifacts artifacts: "out/**"
sh 'cat out/pct-report.html | grep "Tests : Success"'
}
}
}
}
//TODO (oleg-nenashev): This step is unstable at the moment, see JENKINS-60583
Map disabled_itBranches = [:]
disabled_itBranches['CasC tests success'] = {
node('linux') {
checkout scm
stage('Build PCT CLI') {
withEnv([
"JAVA_HOME=${tool 'jdk8'}",
"PATH+MVN=${tool 'mvn'}/bin",
'PATH+JDK=$JAVA_HOME/bin',
]) {
sh 'make allNoDocker'
}
}
stage("Run known successful case(s)") {
withEnv([
"JAVA_HOME=${tool 'jdk8'}",
"MVN_PATH=${tool 'mvn'}/bin",
"PATH+MVN=${tool 'mvn'}/bin",
'PATH+JDK=$JAVA_HOME/bin',
]) {
def settingsXML="mvn-settings.xml"
infra.retrieveMavenSettingsFile(settingsXML)
sh '''java -jar plugins-compat-tester-cli/target/plugins-compat-tester-cli.jar \
-reportFile $(pwd)/out/pct-report.xml \
-workDirectory $(pwd)/out/work \
-skipTestCache true \
-mvn "$MVN_PATH/mvn" \
-m2SettingsFile $(pwd)/mvn-settings.xml \
-includePlugins configuration-as-code
'''
archiveArtifacts artifacts: "out/**"
sh 'cat out/pct-report.html | grep "Tests : Success"'
}
}
}
}
itBranches.failFast = false
parallel itBranches
infra.maybePublishIncrementals()