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

Fix syntax errors in Jenkinsfiles #12095

Merged
merged 1 commit into from
Aug 8, 2018
Merged
Show file tree
Hide file tree
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
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