mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
skip 6.8 branch when triggering baseline-capture builds (#72706)
Co-authored-by: spalger <spalger@users.noreply.github.com>
This commit is contained in:
parent
2437db63ef
commit
b32f72d370
1 changed files with 6 additions and 0 deletions
|
@ -16,6 +16,12 @@ kibanaLibrary.load()
|
|||
|
||||
withGithubCredentials {
|
||||
branches.each { branch ->
|
||||
if (branch == '6.8') {
|
||||
// skip 6.8, it is tracked but we don't need snapshots for it and haven't backported
|
||||
// the baseline capture scripts to it.
|
||||
return;
|
||||
}
|
||||
|
||||
stage(branch) {
|
||||
def commits = getCommits(branch, MAXIMUM_COMMITS_TO_CHECK, MAXIMUM_COMMITS_TO_BUILD)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue