I am starting a JBoss server in Jenkins as a build action. The next action runs a set of tests. I need to add sleeptime between the two actions. Does anyone know how to do t
It is possible to use sleep step in your Jenkins Pipeline. The step is included in Pipeline: Basic Steps.
sleep
Example:
steps { sleep time: 250, unit: 'MILLISECONDS' }