-
Bug
-
Resolution: Unresolved
-
Blocker
-
None
-
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
Hi timja, can you please help me with the issue above?
I am stuck on it for already 4 days, and its quite simple thing I think.