-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Blocker
-
Component/s: pipeline
-
Environment:Pipeline script runs on Mac OS slave
I have in my Jenkins job a simple Jenkinsfile script that looks as follow:
Â
Â
pipeline {
   agent {
       label 'boaz-mac-machine'
   }
stages {
       stage('Setup automation framework') {
           steps {
               echo 'before bash command'
               sh "ls"
               echo 'after bash command'
           }
       }
   }
}
Â
Â
The problem is that the pipeline stuck/hang on the line where I call sh "ls".
My slave machine is a Mac OSÂ