-
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 'main' into fix/treemap-suggestions-2
- Loading branch information
Showing
14,587 changed files
with
590,613 additions
and
286,915 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 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 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,24 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import { execSync } from 'child_process'; | ||
|
||
const getKibanaDir = (() => { | ||
let kibanaDir: string | undefined; | ||
return () => { | ||
if (!kibanaDir) { | ||
kibanaDir = execSync('git rev-parse --show-toplevel', { encoding: 'utf-8' }) | ||
.toString() | ||
.trim(); | ||
} | ||
|
||
return kibanaDir; | ||
}; | ||
})(); | ||
|
||
export { getKibanaDir }; |
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
17 changes: 17 additions & 0 deletions
17
.buildkite/pipelines/es_serverless/emergency_relelease_branch_testing.yml
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,17 @@ | ||
# https://buildkite.com/elastic/kibana-serverless-emergency-release-branch-testing | ||
|
||
## Triggers the artifacts container image build for emergency releases | ||
agents: | ||
queue: kibana-default | ||
|
||
notify: | ||
- slack: "#kibana-mission-control" | ||
if: "build.state == 'passed' || build.state == 'failed' || build.state == 'scheduled'" | ||
|
||
steps: | ||
- trigger: "kibana-artifacts-container-image" | ||
label: ":docker: Build Kibana Artifacts Container Image" | ||
build: | ||
branch: $BUILDKITE_BRANCH | ||
commit: $BUILDKITE_COMMIT | ||
message: Running PR build for $BUILDKITE_BRANCH |
Oops, something went wrong.