@@ -189,15 +189,15 @@ pipeline {
189
189
// (more tests, runs longer, thus gets to use the existing worker)
190
190
stage(' Testing' ) {
191
191
parallel {
192
- stage(' 1.22 ' ) {
192
+ stage(' 1.24 ' ) {
193
193
steps {
194
194
// Skip production, i.e. run testing.
195
- TestInVM (" " , " " , " fedora" , " " , " 1.22 " , " Top.Level..[[:alpha:]]*-production[[:space:]]" , " " )
195
+ TestInVM (" " , " " , " fedora" , " " , " 1.24 " , " Top.Level..[[:alpha:]]*-production[[:space:]]" , " " )
196
196
}
197
197
}
198
198
199
199
// When adding or removing coverage workers, update the "Code Coverage" step below!
200
- stage(' coverage-1.22 ' ) {
200
+ stage(' coverage-1.24 ' ) {
201
201
when {
202
202
beforeAgent true
203
203
not { changeRequest() }
@@ -206,12 +206,12 @@ pipeline {
206
206
label " pmem-csi"
207
207
}
208
208
steps {
209
- TestInVM (" fedora-coverage-1.22 " , " coverage-" , " fedora" , " " , " 1.22 " , " " , " ${ env.COVERAGE_SKIP} " )
209
+ TestInVM (" fedora-coverage-1.24 " , " coverage-" , " fedora" , " " , " 1.24 " , " " , " ${ env.COVERAGE_SKIP} " )
210
210
}
211
211
}
212
212
213
213
// All others set up their own worker.
214
- stage(' 1.21 ' ) {
214
+ stage(' 1.23 ' ) {
215
215
when {
216
216
beforeAgent true
217
217
not { changeRequest() }
@@ -220,10 +220,10 @@ pipeline {
220
220
label " pmem-csi"
221
221
}
222
222
steps {
223
- TestInVM (" fedora-1.21 " , " " , " fedora" , " " , " 1.21 " , " " , " " )
223
+ TestInVM (" fedora-1.23 " , " " , " fedora" , " " , " 1.23 " , " " , " " )
224
224
}
225
225
}
226
- stage(' 1.20 ' ) {
226
+ stage(' 1.22 ' ) {
227
227
when {
228
228
beforeAgent true
229
229
not { changeRequest() }
@@ -232,19 +232,19 @@ pipeline {
232
232
label " pmem-csi"
233
233
}
234
234
steps {
235
- TestInVM (" fedora-1.20 " , " " , " fedora" , " " , " 1.20 " , " " , " " )
235
+ TestInVM (" fedora-1.22 " , " " , " fedora" , " " , " 1.22 " , " " , " " )
236
236
}
237
237
}
238
- stage(' 1.19 ' ) {
238
+ stage(' 1.21 ' ) {
239
239
agent {
240
240
label " pmem-csi"
241
241
}
242
242
steps {
243
243
// Skip testing, i.e. run production.
244
- TestInVM (" fedora-1.19 " , " " , " fedora" , " " , " 1.19 " , " Top.Level..[[:alpha:]]*-testing[[:space:]]" , " " )
244
+ TestInVM (" fedora-1.21 " , " " , " fedora" , " " , " 1.21 " , " Top.Level..[[:alpha:]]*-testing[[:space:]]" , " " )
245
245
}
246
246
}
247
- stage(' coverage-1.19 ' ) {
247
+ stage(' coverage-1.21 ' ) {
248
248
when {
249
249
beforeAgent true
250
250
not { changeRequest() }
@@ -253,7 +253,7 @@ pipeline {
253
253
label " pmem-csi"
254
254
}
255
255
steps {
256
- TestInVM (" fedora-coverage-1.19 " , " coverage-" , " fedora" , " " , " 1.19 " , " " , " ${ env.COVERAGE_SKIP} " )
256
+ TestInVM (" fedora-coverage-1.21 " , " coverage-" , " fedora" , " " , " 1.21 " , " " , " ${ env.COVERAGE_SKIP} " )
257
257
}
258
258
}
259
259
}
@@ -334,8 +334,8 @@ git push origin HEAD:master
334
334
}
335
335
steps {
336
336
// Restore <cluster>-coverage.out files.
337
- unstash ' 1.22 -coverage'
338
- unstash ' 1.19 -coverage'
337
+ unstash ' 1.24 -coverage'
338
+ unstash ' 1.21 -coverage'
339
339
340
340
// Merge and convert to Cobertura XML.
341
341
sh " ${ RunInBuilder()} ${ env.BUILD_CONTAINER} make _work/gocovmerge _work/gocover-cobertura"
0 commit comments