@@ -217,40 +217,40 @@ axes.values().combinations {
217217 }
218218}
219219
220- def athAxes = [
221- platforms : [' linux' ],
222- jdks : [21 ],
223- browsers : [' firefox' ],
224- ]
225- athAxes. values(). combinations {
226- def (platform, jdk, browser) = it
227- builds[" ath-${ platform} -jdk${ jdk} -${ browser} " ] = {
228- retry(conditions : [agent(), nonresumable()], count : 2 ) {
229- node(' docker-highmem' ) {
230- // Just to be safe
231- deleteDir()
232- checkout scm
220+ // def athAxes = [
221+ // platforms: ['linux'],
222+ // jdks: [21],
223+ // browsers: ['firefox'],
224+ // ]
225+ // athAxes.values().combinations {
226+ // def (platform, jdk, browser) = it
227+ // builds["ath-${platform}-jdk${jdk}-${browser}"] = {
228+ // retry(conditions: [agent(), nonresumable()], count: 2) {
229+ // node('docker-highmem') {
230+ // // Just to be safe
231+ // deleteDir()
232+ // checkout scm
233233
234- withChecks(name : ' Tests' , includeStage : true ) {
235- infra. withArtifactCachingProxy {
236- sh " bash ath.sh ${ jdk} ${ browser} "
237- }
238- junit testResults : ' target/ath-reports/TEST-*.xml' , testDataPublishers : [[$class : ' AttachmentPublisher' ]]
239- }
240- /*
241- * Currently disabled, as the fact that this is a manually created subset will confuse Launchable,
242- * which expects this to be a full build. When we implement subsetting, this can be re-enabled using
243- * Launchable's subset rather than our own.
244- */
245- /*
246- withCredentials([string(credentialsId: 'launchable-jenkins-acceptance-test-harness', variable: 'LAUNCHABLE_TOKEN')]) {
247- sh "launchable verify && launchable record tests --no-build --flavor platform=${platform} --flavor jdk=${jdk} --flavor browser=${browser} maven './target/ath-reports'"
248- }
249- */
250- }
251- }
252- }
253- }
234+ // withChecks(name: 'Tests', includeStage: true) {
235+ // infra.withArtifactCachingProxy {
236+ // sh "bash ath.sh ${jdk} ${browser}"
237+ // }
238+ // junit testResults: 'target/ath-reports/TEST-*.xml', testDataPublishers: [[$class: 'AttachmentPublisher']]
239+ // }
240+ // /*
241+ // * Currently disabled, as the fact that this is a manually created subset will confuse Launchable,
242+ // * which expects this to be a full build. When we implement subsetting, this can be re-enabled using
243+ // * Launchable's subset rather than our own.
244+ // */
245+ // /*
246+ // withCredentials([string(credentialsId: 'launchable-jenkins-acceptance-test-harness', variable: 'LAUNCHABLE_TOKEN')]) {
247+ // sh "launchable verify && launchable record tests --no-build --flavor platform=${platform} --flavor jdk=${jdk} --flavor browser=${browser} maven './target/ath-reports'"
248+ // }
249+ // */
250+ // }
251+ // }
252+ // }
253+ // }
254254
255255builds. failFast = failFast
256256parallel builds
0 commit comments