-
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' of github.com:elastic/kibana into controls/dndK…
…itDragDrop
- Loading branch information
Showing
6,766 changed files
with
181,681 additions
and
159,471 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
.buildkite/scripts/lifecycle/post_command.sh |
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,5 @@ | ||
steps: | ||
- command: .buildkite/scripts/steps/es_snapshots/build.sh | ||
label: Build ES Snapshot | ||
agents: | ||
queue: c2-8 |
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,12 @@ | ||
steps: | ||
- block: 'Promote' | ||
prompt: "Enter the details for the snapshot you'd like to promote" | ||
if: "build.env('ES_SNAPSHOT_MANIFEST') == null" | ||
# Later, this could be a dropdown dynamically filled with recent builds | ||
fields: | ||
- text: 'ES_SNAPSHOT_MANIFEST' | ||
key: 'ES_SNAPSHOT_MANIFEST' | ||
hint: 'URL pointing to the manifest to promote' | ||
required: true | ||
- label: Promote Snapshot | ||
command: .buildkite/scripts/steps/es_snapshots/promote.sh |
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,103 @@ | ||
env: | ||
IGNORE_SHIP_CI_STATS_ERROR: 'true' | ||
steps: | ||
- block: 'Verify' | ||
prompt: "Enter the details for the snapshot you'd like to verify" | ||
if: "build.env('ES_SNAPSHOT_MANIFEST') == null" | ||
# Later, this could be a dropdown dynamically filled with recent builds | ||
fields: | ||
- text: 'ES_SNAPSHOT_MANIFEST' | ||
key: 'ES_SNAPSHOT_MANIFEST' | ||
hint: 'URL pointing to the manifest to promote' | ||
required: true | ||
|
||
- command: .buildkite/scripts/lifecycle/pre_build.sh | ||
label: Pre-Build | ||
|
||
- wait | ||
|
||
- command: .buildkite/scripts/steps/build_kibana.sh | ||
label: Build Kibana Distribution and Plugins | ||
agents: | ||
queue: c2-8 | ||
key: build | ||
if: "build.env('KIBANA_BUILD_ID') == null || build.env('KIBANA_BUILD_ID') == ''" | ||
|
||
- command: .buildkite/scripts/steps/functional/xpack_cigroup.sh | ||
label: 'Default CI Group' | ||
parallelism: 13 | ||
agents: | ||
queue: ci-group-6 | ||
depends_on: build | ||
timeout_in_minutes: 150 | ||
key: default-cigroup | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: CI_GROUP=Docker .buildkite/scripts/steps/functional/xpack_cigroup.sh | ||
label: 'Docker CI Group' | ||
agents: | ||
queue: ci-group-6 | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
key: default-cigroup-docker | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/functional/oss_cigroup.sh | ||
label: 'OSS CI Group' | ||
parallelism: 11 | ||
agents: | ||
queue: ci-group-4d | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
key: oss-cigroup | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/test/jest_integration.sh | ||
label: 'Jest Integration Tests' | ||
agents: | ||
queue: n2-4 | ||
timeout_in_minutes: 120 | ||
key: jest-integration | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/test/api_integration.sh | ||
label: 'API Integration Tests' | ||
agents: | ||
queue: jest | ||
timeout_in_minutes: 120 | ||
key: api-integration | ||
|
||
- command: .buildkite/scripts/steps/es_snapshots/trigger_promote.sh | ||
label: Trigger promotion | ||
depends_on: | ||
- default-cigroup | ||
- default-cigroup-docker | ||
- oss-cigroup | ||
- jest-integration | ||
- api-integration | ||
|
||
- wait: ~ | ||
continue_on_failure: true | ||
|
||
- plugins: | ||
- junit-annotate#v1.9.0: | ||
artifacts: target/junit/**/*.xml | ||
job-uuid-file-pattern: '-bk__(.*).xml' | ||
|
||
- wait: ~ | ||
continue_on_failure: true | ||
|
||
- command: .buildkite/scripts/lifecycle/post_build.sh | ||
label: Post-Build |
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,169 @@ | ||
steps: | ||
- command: .buildkite/scripts/lifecycle/pre_build.sh | ||
label: Pre-Build | ||
|
||
- wait | ||
|
||
- command: .buildkite/scripts/steps/build_kibana.sh | ||
label: Build Kibana Distribution and Plugins | ||
agents: | ||
queue: c2-8 | ||
key: build | ||
if: "build.env('KIBANA_BUILD_ID') == null || build.env('KIBANA_BUILD_ID') == ''" | ||
|
||
- command: .buildkite/scripts/steps/functional/xpack_cigroup.sh | ||
label: 'Default CI Group' | ||
parallelism: 13 | ||
agents: | ||
queue: ci-group-6 | ||
depends_on: build | ||
timeout_in_minutes: 150 | ||
key: default-cigroup | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: CI_GROUP=Docker .buildkite/scripts/steps/functional/xpack_cigroup.sh | ||
label: 'Docker CI Group' | ||
agents: | ||
queue: ci-group-6 | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
key: default-cigroup-docker | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/functional/oss_cigroup.sh | ||
label: 'OSS CI Group' | ||
parallelism: 11 | ||
agents: | ||
queue: ci-group-4d | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
key: oss-cigroup | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/functional/oss_accessibility.sh | ||
label: 'OSS Accessibility Tests' | ||
agents: | ||
queue: ci-group-4d | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/functional/xpack_accessibility.sh | ||
label: 'Default Accessibility Tests' | ||
agents: | ||
queue: ci-group-6 | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/functional/oss_firefox.sh | ||
label: 'OSS Firefox Tests' | ||
agents: | ||
queue: ci-group-4d | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/functional/xpack_firefox.sh | ||
label: 'Default Firefox Tests' | ||
agents: | ||
queue: ci-group-6 | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/functional/oss_misc.sh | ||
label: 'OSS Misc Functional Tests' | ||
agents: | ||
queue: ci-group-4d | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/functional/xpack_saved_object_field_metrics.sh | ||
label: 'Saved Object Field Metrics' | ||
agents: | ||
queue: ci-group-6 | ||
depends_on: build | ||
timeout_in_minutes: 120 | ||
retry: | ||
automatic: | ||
- exit_status: '*' | ||
limit: 1 | ||
|
||
- command: .buildkite/scripts/steps/test/jest_integration.sh | ||
label: 'Jest Integration Tests' | ||
agents: | ||
queue: n2-4 | ||
timeout_in_minutes: 120 | ||
key: jest-integration | ||
|
||
- command: .buildkite/scripts/steps/test/api_integration.sh | ||
label: 'API Integration Tests' | ||
agents: | ||
queue: n2-2 | ||
timeout_in_minutes: 120 | ||
key: api-integration | ||
|
||
- command: .buildkite/scripts/steps/test/jest.sh | ||
label: 'Jest Tests' | ||
agents: | ||
queue: c2-16 | ||
timeout_in_minutes: 120 | ||
key: jest | ||
|
||
- command: .buildkite/scripts/steps/lint.sh | ||
label: 'Linting' | ||
agents: | ||
queue: n2-2 | ||
key: linting | ||
|
||
- command: .buildkite/scripts/steps/checks.sh | ||
label: 'Checks' | ||
agents: | ||
queue: c2-4 | ||
key: checks | ||
|
||
- command: .buildkite/scripts/steps/storybooks/build_and_upload.sh | ||
label: 'Build Storybooks' | ||
agents: | ||
queue: c2-4 | ||
key: storybooks | ||
|
||
- wait: ~ | ||
continue_on_failure: true | ||
|
||
- plugins: | ||
- junit-annotate#v1.9.0: | ||
artifacts: target/junit/**/*.xml | ||
job-uuid-file-pattern: '-bk__(.*).xml' | ||
|
||
- wait: ~ | ||
continue_on_failure: true | ||
|
||
- command: .buildkite/scripts/lifecycle/post_build.sh | ||
label: Post-Build |
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
Oops, something went wrong.