diff --git a/Jenkinsfile b/Jenkinsfile index aa41427ef7b..3070fba1903 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,12 +2,6 @@ @Library('apm@current') _ -def numberOfRetries = 1 -// Only Pull Requests can rerun the build&test stages -if (env.CHANGE_ID?.trim()) { - numberOfRetries = 3 -} - pipeline { agent { label 'ubuntu-18 && immutable' } environment { @@ -107,10 +101,7 @@ pipeline { } } stage('Build&Test') { - options { - skipDefaultCheckout() - retry(numberOfRetries) - } + options { skipDefaultCheckout() } when { // Always when running builds on branches/tags // On a PR basis, skip if changes are only related to docs. @@ -129,10 +120,7 @@ pipeline { } } stage('Extended') { - options { - skipDefaultCheckout() - retry(numberOfRetries) - } + options { skipDefaultCheckout() } when { // Always when running builds on branches/tags // On a PR basis, skip if changes are only related to docs.