You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ma...@apache.org on 2019/02/27 14:09:52 UTC

[incubator-mxnet] branch master updated: Temporarily disables windows pipeline to unblock PRs (#14261)

This is an automated email from the ASF dual-hosted git repository.

marcoabreu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 0eed3da  Temporarily disables windows pipeline to unblock PRs (#14261)
0eed3da is described below

commit 0eed3da4abfa97badbf0e3aadcd33bf21af94c4d
Author: perdasilva <pe...@gmail.com>
AuthorDate: Wed Feb 27 15:09:20 2019 +0100

    Temporarily disables windows pipeline to unblock PRs (#14261)
---
 ci/jenkins/Jenkinsfile_windows_cpu | 10 +++++-----
 ci/jenkins/Jenkinsfile_windows_gpu | 10 +++++-----
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/ci/jenkins/Jenkinsfile_windows_cpu b/ci/jenkins/Jenkinsfile_windows_cpu
index 5bc40d6..01ca673 100644
--- a/ci/jenkins/Jenkinsfile_windows_cpu
+++ b/ci/jenkins/Jenkinsfile_windows_cpu
@@ -34,14 +34,14 @@ utils.assign_node_labels(utility: 'utility', windows_cpu: 'mxnetwindows-cpu')
 utils.main_wrapper(
 core_logic: {
   utils.parallel_stage('Build', [
-    custom_steps.compile_windows_cpu()
+    // custom_steps.compile_windows_cpu()
   ])
 
   utils.parallel_stage('Tests', [
-    custom_steps.test_windows_python2_cpu(),
-    custom_steps.test_windows_python3_cpu(),
-    custom_steps.test_windows_julia07_cpu(),
-    custom_steps.test_windows_julia10_cpu()
+    // custom_steps.test_windows_python2_cpu(),
+    // custom_steps.test_windows_python3_cpu(),
+    // custom_steps.test_windows_julia07_cpu(),
+    // custom_steps.test_windows_julia10_cpu()
   ])
 }
 ,
diff --git a/ci/jenkins/Jenkinsfile_windows_gpu b/ci/jenkins/Jenkinsfile_windows_gpu
index 2319f25..b3447b9 100644
--- a/ci/jenkins/Jenkinsfile_windows_gpu
+++ b/ci/jenkins/Jenkinsfile_windows_gpu
@@ -34,14 +34,14 @@ utils.assign_node_labels(utility: 'utility', windows_cpu: 'mxnetwindows-cpu', wi
 utils.main_wrapper(
 core_logic: {
   utils.parallel_stage('Build', [
-    custom_steps.compile_windows_gpu(),
-    custom_steps.compile_windows_gpu_mkldnn()
+    // custom_steps.compile_windows_gpu(),
+    // custom_steps.compile_windows_gpu_mkldnn()
   ])
 
   utils.parallel_stage('Tests', [
-    custom_steps.test_windows_python2_gpu(),
-    custom_steps.test_windows_python3_gpu(),
-    custom_steps.test_windows_python3_gpu_mkldnn()
+    // custom_steps.test_windows_python2_gpu(),
+    // custom_steps.test_windows_python3_gpu(),
+    // custom_steps.test_windows_python3_gpu_mkldnn()
   ])
 }
 ,