-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into stackIntegrationUpdate
- Loading branch information
Showing
3,026 changed files
with
84,579 additions
and
40,320 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
#!/bin/groovy | ||
|
||
def MAXIMUM_COMMITS_TO_CHECK = 10 | ||
def MAXIMUM_COMMITS_TO_BUILD = 5 | ||
|
||
if (!params.branches_yaml) { | ||
error "'branches_yaml' parameter must be specified" | ||
} | ||
|
||
def additionalBranches = [] | ||
|
||
def branches = readYaml(text: params.branches_yaml) + additionalBranches | ||
|
||
library 'kibana-pipeline-library' | ||
kibanaLibrary.load() | ||
|
||
withGithubCredentials { | ||
branches.each { branch -> | ||
stage(branch) { | ||
def commits = getCommits(branch, MAXIMUM_COMMITS_TO_CHECK, MAXIMUM_COMMITS_TO_BUILD) | ||
|
||
commits.take(MAXIMUM_COMMITS_TO_BUILD).each { commit -> | ||
catchErrors { | ||
githubCommitStatus.create(commit, 'pending', 'Baseline started.', 'kibana-ci-baseline') | ||
|
||
build( | ||
propagate: false, | ||
wait: false, | ||
job: 'elastic+kibana+baseline-capture', | ||
parameters: [ | ||
string(name: 'branch_specifier', value: branch), | ||
string(name: 'commit', value: commit), | ||
] | ||
) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
def getCommits(String branch, maximumCommitsToCheck, maximumCommitsToBuild) { | ||
print "Getting latest commits for ${branch}..." | ||
def commits = githubApi.get("repos/elastic/kibana/commits?sha=${branch}").take(maximumCommitsToCheck).collect { it.sha } | ||
def commitsToBuild = [] | ||
|
||
for (commit in commits) { | ||
print "Getting statuses for ${commit}" | ||
def status = githubApi.get("repos/elastic/kibana/statuses/${commit}").find { it.context == 'kibana-ci-baseline' } | ||
print "Commit '${commit}' already built? ${status ? 'Yes' : 'No'}" | ||
|
||
if (!status) { | ||
commitsToBuild << commit | ||
} else { | ||
// Stop at the first commit we find that's already been triggered | ||
break | ||
} | ||
|
||
if (commitsToBuild.size() >= maximumCommitsToBuild) { | ||
break | ||
} | ||
} | ||
|
||
return commitsToBuild.reverse() // We want the builds to trigger oldest-to-newest | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.