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

Commit

Permalink
Address review comments 1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoabreu committed Aug 6, 2018
1 parent b2bea2a commit 33d838f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion ci/Jenkinsfile_docker_cache
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,5 @@ failure_handler:
emailext body: 'Generating the Docker Cache has failed. Please view the build at ${BUILD_URL}', replyTo: '${EMAIL}', subject: '[DOCKER CACHE FAILED] Run ${BUILD_NUMBER}', to: '${EMAIL}'
}
}
)
)

7 changes: 4 additions & 3 deletions ci/Jenkinsfile_utils.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def init_git() {
timeout(time: 15, unit: 'MINUTES') {
checkout scm
sh 'git submodule update --init --recursive'
sh 'git clean -d -f'
sh 'git clean -xdff'
}
} catch (exc) {
deleteDir()
Expand All @@ -46,7 +46,7 @@ def init_git_win() {
timeout(time: 15, unit: 'MINUTES') {
checkout scm
bat 'git submodule update --init --recursive'
bat 'git clean -d -f'
bat 'git clean -xdff'
}
} catch (exc) {
deleteDir()
Expand Down Expand Up @@ -148,4 +148,5 @@ def main_wrapper(args) {
}
}
}
return this
return this

3 changes: 2 additions & 1 deletion tests/nightly/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,5 @@ failure_handler: {
emailext body: 'Nightly tests for MXNet branch ${BRANCH_NAME} failed. Please view the build at ${BUILD_URL}', replyTo: '${EMAIL}', subject: '[NIGHTLY TEST FAILED] build ${BUILD_NUMBER}', to: '${EMAIL}'
}
}
)
)

Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,5 @@ failure_handler: {
emailext body: 'Nightly tests for model backwards compatibity on MXNet branch : ${BRANCH_NAME} failed. Please view the build at ${BUILD_URL}', replyTo: '${EMAIL}', subject: '[MODEL BACKWARDS COMPATIBILITY TEST FAILED] build ${BUILD_NUMBER}', to: '${EMAIL}'
}
}
)
)

0 comments on commit 33d838f

Please sign in to comment.