forked from jenkinsci/plugin-compat-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
executable file
·193 lines (161 loc) · 6.53 KB
/
Copy pathJenkinsfile
File metadata and controls
executable file
·193 lines (161 loc) · 6.53 KB
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
/* Only keep the 10 most recent builds. */
properties([[$class: 'BuildDiscarderProperty',
strategy: [$class: 'LogRotator', numToKeepStr: '10']]])
// 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 = [:]
for (int i = 0; i < platforms.size(); ++i) {
String label = platforms[i]
branches[label] = {
node(label) {
timestamps {
stage('Checkout') {
checkout scm
}
stage('Build') {
timeout(30) {
infra.runMaven(["clean", "install", "-Dmaven.test.failure.ignore=true"])
}
}
stage('Archive') {
/* Archive the test results */
junit '**/target/surefire-reports/TEST-*.xml'
if (label == 'linux') {
archiveArtifacts artifacts: '**/target/**/*.jar'
findbugs pattern: '**/target/findbugsXml.xml'
}
}
}
}
}
}
parallel(branches)
// Integration testing, using a locally built Docker image
def itBranches = [:]
itBranches['buildtriggerbadge:2.10 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.10 \
jenkins/pct
'''
archiveArtifacts artifacts: "out/**"
sh 'cat out/pct-report.html | grep "Tests : Success"'
}
}
}
itBranches['buildtriggerbadge:2.10 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.10 \
jenkins/pct
'''
archiveArtifacts artifacts: "out/**"
sh 'cat out/pct-report.html | grep "Tests : Success"'
}
}
}
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