marcoabreu commented on a change in pull request #11340: [MXNET-559] Scripts 
for running the  Broken link checker job
URL: https://github.com/apache/incubator-mxnet/pull/11340#discussion_r197222745
 
 

 ##########
 File path: tests/nightly/broken_link_checker_test/JenkinsfileForBLC
 ##########
 @@ -0,0 +1,82 @@
+// -*- mode: groovy -*-
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+
+//This is a Jenkinsfile for the broken link checker test.
+
+err = null
+
+def init_git() {
+  deleteDir()
+  retry(5) {
+    try {
+      timeout(time: 15, unit: 'MINUTES') {
+        checkout scm
+        sh 'git submodule update --init --recursive'
+        sh 'git clean -d -f'
+      }
+    } catch (exc) {
+      deleteDir()
+      error "Failed to fetch source codes with ${exc}"
+      sleep 2
+    }
+  }
+}
+
+def docker_run(platform, function_name, use_nvidia, shared_mem = '500m') {
+  def command = "ci/build.py --docker-registry ${env.DOCKER_CACHE_REGISTRY} 
%USE_NVIDIA% --platform %PLATFORM% --shm-size %SHARED_MEM% 
/work/runtime_functions.sh %FUNCTION_NAME%"
+  command = command.replaceAll('%USE_NVIDIA%', use_nvidia ? '--nvidiadocker' : 
'')
+  command = command.replaceAll('%PLATFORM%', platform)
+  command = command.replaceAll('%FUNCTION_NAME%', function_name)
+  command = command.replaceAll('%SHARED_MEM%', shared_mem)
+
+  sh command
+}
+
+try {
+  stage('BLC'){
+    parallel 'BrokenLinkChecker: CPU': {
+      node('mxnetlinux-cpu') {
+        ws('workspace/brokenLinkChecker') {
+          init_git()
+                 sh 'aws s3 cp s3://mxnet-ci-prod-slave-data/url_list.txt  
./tests/nightly/broken_link_checker_test/url_list.txt'
+                 docker_run('ubuntu_blc', 'broken_link_checker', false)      
+        }
+      }
+    }
+  }
+} catch (caughtError) {
+  node("mxnetlinux-cpu") {
+    sh "echo caught ${caughtError}"
+    err = caughtError
+    currentBuild.result = "FAILURE"
+  }
+} finally {
+  node("mxnetlinux-cpu") {
+       sh "echo Storing the new url_list.txt to S3 bucket" 
+    sh 'aws s3 cp ./tests/nightly/broken_link_checker_test/url_list.txt 
s3://mxnet-ci-prod-slave-data/url_list.txt'
 
 Review comment:
   This will not work since the previous request left the node context. Just 
make a try finally at the place where we run the code and expect it to fail

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to