-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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 alerting-ui-reduce-bundle-with-async-validate
- Loading branch information
Showing
565 changed files
with
15,635 additions
and
22,455 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/groovy | ||
library 'kibana-pipeline-library' | ||
kibanaLibrary.load() | ||
kibanaPipeline(timeoutMinutes: 300) { | ||
slackNotifications.onFailure { | ||
ciStats.trackBuild { | ||
workers.ci(ramDisk: false, name: "package-build", size: 'l', runErrorReporter: false) { | ||
withGcpServiceAccount.fromVaultSecret('secret/kibana-issues/dev/ci-artifacts-key', 'value') { | ||
kibanaPipeline.bash("test/scripts/jenkins_xpack_package_build.sh", "Package builds") | ||
} | ||
} | ||
def packageTypes = ['deb', 'docker', 'rpm'] | ||
def workers = [:] | ||
packageTypes.each { type -> | ||
workers["package-${type}"] = { | ||
testPackage(type) | ||
} | ||
} | ||
parallel(workers) | ||
} | ||
} | ||
} | ||
def testPackage(packageType) { | ||
workers.ci(ramDisk: false, name: "package-${packageType}", size: 's', runErrorReporter: false) { | ||
withGcpServiceAccount.fromVaultSecret('secret/kibana-issues/dev/ci-artifacts-key', 'value') { | ||
kibanaPipeline.bash("test/scripts/jenkins_xpack_package_${packageType}.sh", "Execute package testing for ${packageType}") | ||
} | ||
} | ||
} |
Validating CODEOWNERS rules …
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.