Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-56846

filesystem scm load stuck in jenkinfile-runner

XMLWordPrintable

      I need to run jenkinsfile via the jenkinsdile-runner.

      My jenkinsfile contains load shared library via filesystem scm plugin.

       

      pipeline {    
         agent any    
         stages {
             stage('Load Library') {
                steps {
                  library identifier: 'my@TestCase',
                             retriever: legacySCM(
                             filesystem(clearWorkspace: false, copyHidden: false, path: "/workspace/my"))
                  }
             }
           stage('Test') {
              steps {
                  my_method_to_run a: "aaaa"
              }
           }
         }
       }
      
      

      Via docker execution the load shared lib is stuck.

       

      Loading library my@TestCase
      FSSCM.checkout /workspace/my_shared_library to /tmp/jenkinsfileRunner.tmp/jfr5221246900865917223.run/workspace/job@libs/my
      

            egutierrez Evaristo Gutierrez
            shurikg Shurik Gefter
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: