Skip to content

Commit f93bc47

Browse files
Spencerspalger
andauthored
[7.x] skip 6.8 branch when triggering baseline-capture builds (#72706) (#72740)
Co-authored-by: spalger <spalger@users.noreply.github.com>
1 parent 9f3d99f commit f93bc47

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.ci/Jenkinsfile_baseline_trigger

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ kibanaLibrary.load()
1616

1717
withGithubCredentials {
1818
branches.each { branch ->
19+
if (branch == '6.8') {
20+
// skip 6.8, it is tracked but we don't need snapshots for it and haven't backported
21+
// the baseline capture scripts to it.
22+
return;
23+
}
24+
1925
stage(branch) {
2026
def commits = getCommits(branch, MAXIMUM_COMMITS_TO_CHECK, MAXIMUM_COMMITS_TO_BUILD)
2127

0 commit comments

Comments
 (0)