Skip to content

Commit e5243fb

Browse files
authored
Merge branch 'main' into surface-v1-endpoint-deprecations
2 parents 97153f1 + dbab221 commit e5243fb

1,673 files changed

Lines changed: 41652 additions & 21757 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.buildkite/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.buildkite/pipelines/on_merge.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,21 @@ steps:
493493
- exit_status: '-1'
494494
limit: 3
495495

496+
- command: .buildkite/scripts/steps/openapi_publishing/publish_oas_docs.sh
497+
label: 'Publish OAS docs to bump.sh'
498+
agents:
499+
image: family/kibana-ubuntu-2004
500+
imageProject: elastic-images-prod
501+
provider: gcp
502+
machineType: n2-standard-2
503+
preemptible: true
504+
timeout_in_minutes: 60
505+
soft_fail: true
506+
retry:
507+
automatic:
508+
- exit_status: '-1'
509+
limit: 3
510+
496511
- command: .buildkite/scripts/steps/bazel_cache/bootstrap_linux.sh
497512
label: 'Populate local dev bazel cache (Linux)'
498513
agents:

.buildkite/scripts/steps/openapi_bundling/final_merge.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ set -euo pipefail
44

55
source .buildkite/scripts/common/util.sh
66

7+
cur_dir=$(pwd)
8+
cd oas_docs
9+
10+
echo --- Installing NPM modules
11+
npm install
12+
713
echo --- Merge Kibana OpenAPI specs
14+
make api-docs
15+
# make api-docs-lint <-- Relies on JSONPath version with RCE vulnerabilities based on `npm audit`, https://github.com/advisories/GHSA-pppg-cpfq-h7wr
816

9-
(cd oas_docs && make api-docs && make api-docs-lint)
17+
cd "$cur_dir"
1018

1119
check_for_changed_files "make api-docs" true

0 commit comments

Comments
 (0)