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

Commit ac125d7

Browse files
committed
add variant in the environment variable
1 parent aa7776c commit ac125d7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ci/docker/runtime_functions.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1285,9 +1285,10 @@ deploy_jl_docs() {
12851285
# ...
12861286
}
12871287

1288-
build_static_python() {
1288+
build_static_python_mkl() {
12891289
set -ex
12901290
pushd .
1291+
export mxnet_variant=mkl
12911292
./ci/publish/python/build.sh
12921293
popd
12931294
}

ci/jenkins/Jenkins_steps.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,9 +525,9 @@ def test_static_python_cpu() {
525525
return ['Static build CPU 14.04 Python' : {
526526
node(NODE_LINUX_CPU) {
527527
ws('workspace/ut-publish-python-cpu') {
528-
withEnv(["mxnet_variant=mkl"]) {
528+
timeout(time: max_time, unit: 'MINUTES') {
529529
utils.init_git()
530-
utils.docker_run("publish.ubuntu1404_cpu", 'build_static_python', false, '500m','mxnet_variant')
530+
utils.docker_run("publish.ubuntu1404_cpu", 'build_static_python_mkl', false)
531531
}
532532
}
533533
}

0 commit comments

Comments
 (0)