All Downloads are FREE. Search and download functionalities are using the official Maven repository.

job.parallelJob.jenkins Maven / Gradle / Ivy

def execute() {
    parallel(
            action1: {
                node() {
                    sh 'sleep 3'
                }
            },
            action2: {
                node() {
                    sh 'sleep 4'
                    error 'message'
                }
            }
    )
}

return this




© 2015 - 2025 Weber Informatics LLC | Privacy Policy