Troubleshooting Pipelines
Bitbucket Webhook Triggers Missed
Aborted pipelines
stages{
stage("Analysis"){
steps{
withSonarQubeEnv('SonarqubeCorp') {
runSonar()
sleep(60) // <---- INCREASE THIS TIME
}
}
}
stage("Quality Gate") {
when {
expression { RUN_TESTS }
}
steps {
timeout(time: 10, unit: 'MINUTES') {
waitForQualityGate abortPipeline: true
}
}Last updated