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

Commit

Permalink
Revert Jenkinsfile and add deprecation message
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoabreu committed Nov 20, 2018
1 parent 1866c8b commit 0305879
Showing 1 changed file with 39 additions and 2 deletions.
41 changes: 39 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,32 @@
// Jenkins pipeline
// See documents at https://jenkins.io/doc/book/pipeline/jenkinsfile/


/***
* _____ _
* | __ \| |
* | |__) | | ___ __ _ ___ ___
* | ___/| |/ _ \/ _` / __|/ _ \
* | | | || | __/ (_| \__ \ __/
* |_|_| ||_|\___|\__,_|___/\___|
* / _` |/ _ \
* | (_| | (_) |_
* \__,_|\___/| |
* _ __ ___ | |_
* | '_ \ / _ \| __| _ _ __
* | | | | (_) | |_ | (_)/ _|
* |_|_|_|\___/_\__| __| |_| |_ _ _
* | '_ ` _ \ / _ \ / _` | | _| | | |
* | | | | | | (_) | (_| | | | | |_| |
* |_| |_| |_|\___/ \__,_|_|_| \__, |
* __/ |
* |___/
*
* This file is about to be deprecated! See https://github.com/apache/incubator-mxnet/pull/13344
* for more details
*/


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

Expand Down Expand Up @@ -152,7 +178,7 @@ core_logic: {
timeout(time: max_time, unit: 'MINUTES') {
utils.init_git()
utils.docker_run('centos7_cpu', 'build_centos7_cpu', false)
utils.pack_lib('centos7_cpu', mx_lib, true)
utils.pack_lib('centos7_cpu', mx_dist_lib, true)
}
}
}
Expand Down Expand Up @@ -698,6 +724,17 @@ core_logic: {
}
}
},
'Scala: CentOS CPU': {
node(NODE_LINUX_CPU) {
ws('workspace/ut-scala-centos7-cpu') {
timeout(time: max_time, unit: 'MINUTES') {
utils.unpack_and_init('centos7_cpu', mx_dist_lib, true)
utils.docker_run('centos7_cpu', 'unittest_centos7_cpu_scala', false)
utils.publish_test_coverage()
}
}
}
},
'Clojure: CPU': {
node(NODE_LINUX_CPU) {
ws('workspace/ut-clojure-cpu') {
Expand Down Expand Up @@ -970,4 +1007,4 @@ failure_handler: {
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 0305879

Please sign in to comment.