Skip to content

Commit 0face56

Browse files
committed
comment out ath stages
1 parent 21e09b6 commit 0face56

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

Jenkinsfile

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -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

255255
builds.failFast = failFast
256256
parallel builds

0 commit comments

Comments
 (0)