You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2018/08/18 08:16:34 UTC

[GitHub] KellenSunderland closed pull request #12235: WIP: Disable TRT due to flaky builds

KellenSunderland closed pull request #12235: WIP: Disable TRT due to flaky builds
URL: https://github.com/apache/incubator-mxnet/pull/12235
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/Jenkinsfile b/Jenkinsfile
index 6eaee43df04..ea46eca050f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -302,17 +302,18 @@ core_logic: {
         }
       }
     },
-    'TensorRT': {
-      node(NODE_LINUX_CPU) {
-        ws('workspace/build-tensorrt') {
-          timeout(time: max_time, unit: 'MINUTES') {
-            utils.init_git()
-            utils.docker_run('ubuntu_gpu_tensorrt', 'build_ubuntu_gpu_tensorrt', false)
-            utils.pack_lib('tensorrt', mx_tensorrt_lib)
-          }
-        }
-      }
-    },
+    // Disabled due to flaky failures https://github.com/apache/incubator-mxnet/issues/12234
+    // 'TensorRT': {
+    //   node(NODE_LINUX_CPU) {
+    //     ws('workspace/build-tensorrt') {
+    //       timeout(time: max_time, unit: 'MINUTES') {
+    //         utils.init_git()
+    //         utils.docker_run('ubuntu_gpu_tensorrt', 'build_ubuntu_gpu_tensorrt', false)
+    //         utils.pack_lib('tensorrt', mx_tensorrt_lib)
+    //       }
+    //     }
+    //   }
+    // },
     'Build CPU windows':{
       node(NODE_WINDOWS_CPU) {
         timeout(time: max_time, unit: 'MINUTES') {
@@ -628,22 +629,23 @@ core_logic: {
         }
       }
     },
-    'Python3: TensorRT GPU': {
-      node(NODE_LINUX_GPU_P3) {
-        ws('workspace/build-tensorrt') {
-          timeout(time: max_time, unit: 'MINUTES') {
-            try {
-              utils.init_git()
-              utils.unpack_lib('tensorrt', mx_tensorrt_lib)
-              utils.docker_run('ubuntu_gpu_tensorrt', 'unittest_ubuntu_tensorrt_gpu', true)
-              utils.publish_test_coverage()
-            } finally {
-              utils.collect_test_results_unix('nosetests_tensorrt.xml', 'nosetests_python3_tensorrt_gpu.xml')
-            }
-          }
-        }
-      }
-    },
+    // Disabled due to flaky build failures: https://github.com/apache/incubator-mxnet/issues/12234
+    // 'Python3: TensorRT GPU': {
+    //   node(NODE_LINUX_GPU_P3) {
+    //     ws('workspace/build-tensorrt') {
+    //       timeout(time: max_time, unit: 'MINUTES') {
+    //         try {
+    //           utils.init_git()
+    //           utils.unpack_lib('tensorrt', mx_tensorrt_lib)
+    //           utils.docker_run('ubuntu_gpu_tensorrt', 'unittest_ubuntu_tensorrt_gpu', true)
+    //           utils.publish_test_coverage()
+    //         } finally {
+    //           utils.collect_test_results_unix('nosetests_tensorrt.xml', 'nosetests_python3_tensorrt_gpu.xml')
+    //         }
+    //       }
+    //     }
+    //   }
+    // },
     'Scala: CPU': {
       node(NODE_LINUX_CPU) {
         ws('workspace/ut-scala-cpu') {


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services