Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Disable flaky website build
Browse files Browse the repository at this point in the history
  • Loading branch information
larroy committed Jan 11, 2019
1 parent 5282cdd commit b3cdfaf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ci/jenkins/Jenkinsfile_website
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ node('utility') {
}
utils.assign_node_labels(utility: 'utility', linux_cpu: 'mxnetlinux-cpu')

/* disabled due to flakyness / failures tracked at https://github.com/apache/incubator-mxnet/issues/13833
utils.main_wrapper(
core_logic: {
utils.parallel_stage('Build', [
Expand All @@ -50,3 +51,18 @@ failure_handler: {
}
}
)
*/
utils.main_wrapper(
core_logic: {
script {
echo 'Website build is disabled since it's failing too often: https://github.com/apache/incubator-mxnet/issues/13833'
}
}
,
failure_handler: {
// Only send email if master or release branches failed
if (currentBuild.result == "FAILURE" && (env.BRANCH_NAME == "master" || env.BRANCH_NAME.startsWith("v"))) {
emailext body: 'Build for MXNet branch ${BRANCH_NAME} has broken. Please view the build at ${BUILD_URL}', replyTo: '${EMAIL}', subject: '[BUILD FAILED] Branch ${BRANCH_NAME} build ${BUILD_NUMBER}', to: '${EMAIL}'
}
}
)

0 comments on commit b3cdfaf

Please sign in to comment.