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 2018/06/29 03:27:20 UTC

[incubator-mxnet] branch master updated: [Nightly Tests] Disable some nightly tests for installation guide (#11452)

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 a0669d0  [Nightly Tests] Disable some nightly tests for installation guide (#11452)
a0669d0 is described below

commit a0669d07d12f7dcad47e8db8befd1e0a99a8203f
Author: mbaijal <30...@users.noreply.github.com>
AuthorDate: Thu Jun 28 20:27:14 2018 -0700

    [Nightly Tests] Disable some nightly tests for installation guide (#11452)
    
    * Disable nightly install guide test for pip and build from source on cpu
    
    * add link to github issue
---
 tests/nightly/Jenkinsfile | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/tests/nightly/Jenkinsfile b/tests/nightly/Jenkinsfile
index 4b7a094..fb9fbfd 100755
--- a/tests/nightly/Jenkinsfile
+++ b/tests/nightly/Jenkinsfile
@@ -89,11 +89,13 @@ try {
       node('mxnetlinux-cpu') {
         ws('workspace/nt-Installation-cpu') {
           init_git()
+          //Some install guide tests are currently diabled and tracked here:
+          //1. https://github.com/apache/incubator-mxnet/issues/11369
+          //2. https://github.com/apache/incubator-mxnet/issues/11288
           docker_run('ubuntu_base_cpu', 'nightly_test_installation ubuntu_python_cpu_virtualenv', false)
-          docker_run('ubuntu_base_cpu', 'nightly_test_installation ubuntu_python_cpu_pip', false)
-          //Docker Install Test is currently disabled and tracked here: https://github.com/apache/incubator-mxnet/issues/11288
+          //docker_run('ubuntu_base_cpu', 'nightly_test_installation ubuntu_python_cpu_pip', false)
           //docker_run('ubuntu_base_cpu', 'nightly_test_installation ubuntu_python_cpu_docker', false)
-          docker_run('ubuntu_base_cpu', 'nightly_test_installation ubuntu_python_cpu_source', false)
+          //docker_run('ubuntu_base_cpu', 'nightly_test_installation ubuntu_python_cpu_source', false)
         }
       }
     },
@@ -101,9 +103,11 @@ try {
       node('mxnetlinux-gpu') {
         ws('workspace/nt-Installation-gpu') {
           init_git()
+          //Some install guide tests are currently diabled and tracked here:
+          //1. https://github.com/apache/incubator-mxnet/issues/11369
+          //2. https://github.com/apache/incubator-mxnet/issues/11288
           docker_run('ubuntu_base_gpu', 'nightly_test_installation ubuntu_python_gpu_virtualenv', true)
-          docker_run('ubuntu_base_gpu', 'nightly_test_installation ubuntu_python_gpu_pip', true)
-          //Docker Install Test is currently disabled and tracked here: https://github.com/apache/incubator-mxnet/issues/11288
+          //docker_run('ubuntu_base_gpu', 'nightly_test_installation ubuntu_python_gpu_pip', true)
           //docker_run('ubuntu_base_gpu', 'nightly_test_installation ubuntu_python_gpu_docker', true)
           docker_run('ubuntu_base_gpu', 'nightly_test_installation ubuntu_python_gpu_source', true)
         }