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

Commit

Permalink
Fix syntax errors in Jenkinsfiles (#12095)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoabreu authored Aug 8, 2018
1 parent 181a2e2 commit 1a222c3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ core_logic: {
}
}
}
}
,
failure_handler: {
if (currentBuild.result == "FAILURE") {
Expand Down
1 change: 1 addition & 0 deletions tests/nightly/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ core_logic: {
}
}
}
}
,
failure_handler: {
// Only send email if nightly test failed
Expand Down
3 changes: 2 additions & 1 deletion tests/nightly/JenkinsfileForBinaries
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

mx_lib = 'lib/libmxnet.so, lib/libmxnet.a, 3rdparty/dmlc-core/libdmlc.a, 3rdparty/tvm/nnvm/lib/libnnvm.a'

node('mxnetlinux-cpu) {
node('mxnetlinux-cpu') {
// Loading the utilities requires a node context unfortunately
checkout scm
utils = load('ci/Jenkinsfile_utils.groovy')
Expand Down Expand Up @@ -98,6 +98,7 @@ core_logic: {
}
}
}
}
,
failure_handler: {
if (currentBuild.result == "FAILURE") {
Expand Down
1 change: 1 addition & 0 deletions tests/nightly/broken_link_checker_test/JenkinsfileForBLC
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ core_logic: {
}
}
}
}
,
failure_handler:
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ core_logic: {
}
}
}
}
,
failure_handler: {
// Only send email if model backwards compat test failed
Expand Down

0 comments on commit 1a222c3

Please sign in to comment.