stage('Run Integration Tests') { steps { timeout(time: 30, unit: 'MINUTES') { retry(1) { build job: 'my-integration-test' } } } }Enter code here...stage('Run Integration Tests') {
steps {
timeout(time: 30, unit: 'MINUTES') {
retry(1) {
build job: 'my-integration-test'
}
}
}
post {
always {
}
changed {
}
success {
}
failure {
}
unstable {
}
}
}