Skip to content

Commit

Permalink
ci: remove heartbeat ironbank validation scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v committed May 24, 2023
1 parent b0e0ad0 commit e34fa74
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .ci/schedule-daily.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ pipeline {
stage('Nighly beats builds') {
steps {
runMacosBuilds(quietPeriodFactor: 2000, branches: ['main', '8.<next-minor>', '8.<minor>', '8.<next-patch>', '7.<minor>'])
runIronbankBuilds(quietPeriodFactor: 100, branches: ['main', '8.<next-minor>', '8.<minor>', '8.<next-patch>', '7.<minor>'])
}
}
}
Expand All @@ -43,14 +42,3 @@ def runMacosBuilds(Map args = [:]) {
quietPeriod += args.quietPeriodFactor
}
}

def runIronbankBuilds(Map args = [:]) {
def branches = getBranchesFromAliases(aliases: args.branches)

def quietPeriod = 0
branches.each { branch ->
build(quietPeriod: quietPeriod, job: "Beats/ironbank-validation-mbp/${branch}", wait: false, propagate: false)
// Increate the quiet period for the next iteration
quietPeriod += args.quietPeriodFactor
}
}

0 comments on commit e34fa74

Please sign in to comment.