You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by lx...@apache.org on 2017/07/07 15:59:03 UTC

[50/50] [abbrv] incubator-mxnet-test git commit: Change node labels

Change node labels


Project: http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/commit/bf2a62da
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/tree/bf2a62da
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/diff/bf2a62da

Branch: refs/heads/master
Commit: bf2a62da78be8b3f79be843575b34f2d356d8cf9
Parents: cd9aa79
Author: Nguyen <ly...@amazon.com>
Authored: Fri Jul 7 08:23:25 2017 -0700
Committer: Nguyen <ly...@amazon.com>
Committed: Fri Jul 7 08:23:25 2017 -0700

----------------------------------------------------------------------
 Jenkinsfile | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/blob/bf2a62da/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index 524d974..4be966e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -40,7 +40,7 @@ def init_git_win() {
 
 stage("Sanity Check") {
   timeout(time: max_time, unit: 'MINUTES') {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/sanity') {
         init_git()
         make('lint', 'cpplint rcpplint jnilint')
@@ -88,7 +88,7 @@ echo ${libs} | sed -e 's/,/ /g' | xargs md5sum
 
 stage('Build') {
   parallel 'CPU: Openblas': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/build-cpu') {
         init_git()
         def flag = """ \
@@ -104,7 +104,7 @@ USE_BLAS=openblas             \
     }
   },
   'GPU: CUDA7.5+cuDNN5': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/build-gpu') {
         init_git()
         def flag = """ \
@@ -124,7 +124,7 @@ USE_CPP_PACKAGE=1             \
     }
   },
   'Amalgamation': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/amalgamation') {
         init_git()
         make('cpu', '-C amalgamation/ USE_BLAS=openblas MIN=1')
@@ -132,7 +132,7 @@ USE_CPP_PACKAGE=1             \
     }
   },
   'GPU: MKLML': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/build-mklml') {
         init_git()
         def flag = """ \
@@ -176,7 +176,7 @@ def python_gpu_ut(docker_type) {
 
 stage('Unit Test') {
   parallel 'Python2/3: CPU': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/ut-python-cpu') {
         init_git()
         unpack_lib('cpu')
@@ -185,7 +185,7 @@ stage('Unit Test') {
     }
   },
   'Python2/3: GPU': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/ut-python-gpu') {
         init_git()
         unpack_lib('gpu', mx_lib)
@@ -194,7 +194,7 @@ stage('Unit Test') {
     }
   },
   'Python2/3: MKLML': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/ut-python-mklml') {
         init_git()
         unpack_lib('mklml')
@@ -204,7 +204,7 @@ stage('Unit Test') {
     }
   },
   'Scala: CPU': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/ut-scala-cpu') {
         init_git()
         unpack_lib('cpu')
@@ -217,7 +217,7 @@ stage('Unit Test') {
     }
   },
   'R: CPU': {
-    node('linux') {
+    node('mxnetlinux') {
       ws('workspace/ut-r-cpu') {
         init_git()
         unpack_lib('cpu')
@@ -232,7 +232,7 @@ stage('Unit Test') {
     }
   },
   'R: GPU': {
-    node('GPU' && 'linux') {
+    node('mxnetlinux') {
       ws('workspace/ut-r-gpu') {
         init_git()
         unpack_lib('gpu')
@@ -247,7 +247,7 @@ stage('Unit Test') {
     }
   },  
   'Python2/3: CPU Win':{
-    node('windows') {
+    node('mxnetwindows') {
       ws('workspace/ut-python-cpu') {
         init_git_win()
         unstash 'vc14_cpu'
@@ -267,7 +267,7 @@ C:\\mxnet\\test_cpu.bat"""
      }
    },
    'Python2/3: GPU Win':{
-     node('windows') {
+     node('mxnetwindows') {
        ws('workspace/ut-python-gpu') {
          init_git_win()
          unstash 'vc14_gpu'
@@ -291,7 +291,7 @@ C:\\mxnet\\test_gpu.bat"""
 
 stage('Integration Test') {
   parallel 'Python': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/it-python-gpu') {
         init_git()
         unpack_lib('gpu')
@@ -303,7 +303,7 @@ stage('Integration Test') {
     }
   },
   'Caffe': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/it-caffe') {
         init_git()
         unpack_lib('gpu')
@@ -315,7 +315,7 @@ stage('Integration Test') {
     }
   },
   'cpp-package': {
-    node('mxnet') {
+    node('mxnetlinux') {
       ws('workspace/it-cpp-package') {
         init_git()
         unpack_lib('gpu')
@@ -330,7 +330,7 @@ stage('Integration Test') {
 }
 
 stage('Deploy') {
-  node('mxnet') {
+  node('mxnetlinux') {
     ws('workspace/docs') {
       if (env.BRANCH_NAME == "master") {
         init_git()