Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ docker_run = 'tests/ci_build/ci_build.sh'
max_time = 60
// assign any caught errors here
err = null
// set build status to success by default
currentBuild.result = "SUCCESS"

// initialize source codes
def init_git() {
Expand Down Expand Up @@ -438,6 +436,8 @@ try {
}
}
}
// set build status to success at the end
currentBuild.result = "SUCCESS"
} catch (caughtError) {
node("mxnetlinux") {
sh "echo caught error"
Expand Down