Re: Dynamic Sleep time to execute next step in pipeline

2019-12-02 Thread Ivan Fernandez Calvo
As Mark said spawn process in background in a Jenkins agent is a really bad idea. > https://wiki.jenkins.io/display/JENKINS/Spawning+processes+from+build -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop

Re: Dynamic Sleep time to execute next step in pipeline

2019-12-01 Thread Mark Waite
If line 3 runs a program (shell script or otherwise) which does not spawn additional background processes, then that step will not return until line 3 has finished. It would be synchronous. Since you've indicated that the desired script actions have not completed when line 3 returns, I assume tha