diff --git a/.ci/schedule-daily.groovy b/.ci/schedule-daily.groovy index adad76cbd765..2211dec4c499 100644 --- a/.ci/schedule-daily.groovy +++ b/.ci/schedule-daily.groovy @@ -21,8 +21,11 @@ pipeline { stage('Nighly beats builds') { steps { runBuild(quietPeriod: 0, job: 'Beats/beats/master') - runBuild(quietPeriod: 2000, job: 'Beats/beats/7.16') - runBuild(quietPeriod: 4000, job: 'Beats/beats/7.15') + // This should be `current_8` bump.getCurrentMinorReleaseFor8 + runBuild(quietPeriod: 2000, job: 'Beats/beats/8.0') + // This should be `current_7` bump.getCurrentMinorReleaseFor7 or + // `next_minor_7` bump.getNextMinorReleaseFor7 + runBuild(quietPeriod: 4000, job: 'Beats/beats/7.16') } } } diff --git a/.ci/schedule-weekly.groovy b/.ci/schedule-weekly.groovy index 74293ab7b9f6..c2d96964575d 100644 --- a/.ci/schedule-weekly.groovy +++ b/.ci/schedule-weekly.groovy @@ -21,8 +21,11 @@ pipeline { stage('Weekly beats builds') { steps { runBuild(quietPeriod: 0, job: 'Beats/beats/master') - runBuild(quietPeriod: 1000, job: 'Beats/beats/7.16') - runBuild(quietPeriod: 2000, job: 'Beats/beats/7.15') + // This should be `current_8` bump.getCurrentMinorReleaseFor8 + runBuild(quietPeriod: 1000, job: 'Beats/beats/8.0') + // This should be `current_7` bump.getCurrentMinorReleaseFor7 or + // `next_minor_7` bump.getNextMinorReleaseFor7 + runBuild(quietPeriod: 2000, job: 'Beats/beats/7.16') } } }