mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 10:40:07 -04:00
* temp use unverified snapshot Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co> * Revert "skip failing es promotion suite (#104469)" This reverts commit87971e74e1
. * Revert "skip failing es promotion suite (#104467)" This reverts commitc72ad3edcb
. * Revert "skip failing es promotion suite (#104466)" This reverts commita0b36c75f5
. * Revert "skip failing es promotion suite (#104413)" This reverts commit9773e3f678
. * Revert "skip failing es promotion suite (#104409)" This reverts commit79608dcc9e
. * Revert "skip failing es promotion suite (#104366)" This reverts commitdfc5dbb31b
. * Revert "skip failing es promotion suite (#104365)" This reverts commit269577703a
. * Revert "skip failing es promotion suite (#104364)" This reverts commit16f69d24b6
. * Revert "skip failing es promotion suite (#104362)" This reverts commit2e492c2083
. * Revert another commit to promote ES snapshot Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
23 lines
566 B
Groovy
23 lines
566 B
Groovy
#!/bin/groovy
|
|
|
|
env.KBN_ES_SNAPSHOT_USE_UNVERIFIED = 'true'
|
|
|
|
library 'kibana-pipeline-library'
|
|
kibanaLibrary.load()
|
|
|
|
kibanaPipeline(timeoutMinutes: 210, checkPrChanges: true, setCommitStatus: true) {
|
|
slackNotifications.onFailure(disabled: !params.NOTIFY_ON_FAILURE) {
|
|
githubPr.withDefaultPrComments {
|
|
ciStats.trackBuild(requireSuccess: githubPr.isTrackedBranchPr()) {
|
|
catchError {
|
|
retryable.enable()
|
|
kibanaPipeline.allCiTasks()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (params.NOTIFY_ON_FAILURE) {
|
|
kibanaPipeline.sendMail()
|
|
}
|
|
}
|