-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[OAS] Capture and commit serverless bundle #184915
[OAS] Capture and commit serverless bundle #184915
Conversation
kibana?: { | ||
settings?: {}; | ||
cliArgs?: Partial<CliArgs>; | ||
}; | ||
adjustTimeout?: (timeout: number) => void; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just enables passing through our special "enable all plugins" setting
@@ -16,23 +16,29 @@ import { observeLines } from '@kbn/stdio-dev-helpers'; | |||
|
|||
// import type { Result } from './kibana_worker'; | |||
|
|||
interface StartTSWorkerArgs { | |||
interface StartTSWorkerArgs extends ForkOptions { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Decided to include all ForkOptions
for this util, not strictly needed, but seemed simpler.
/ci |
/ci |
Pinging @elastic/kibana-core (Team:Core) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just a couple questions
packages/kbn-capture-oas-snapshot-cli/src/run_capture_oas_snapshot_cli.ts
Outdated
Show resolved
Hide resolved
💛 Build succeeded, but was flaky
Failed CI StepsMetrics [docs]Public APIs missing comments
History
To update your PR or re-run it, just comment with: |
Summary
Close #184719
Adds the ability to capture OAS for
serverless
build flavor in addition totraditional
. By default the CLI will run for both, but this can be controlled by passing in one of two new flags:--no-serverless
or--no-traditional
.See
oas_docs/bundle.serverless.json
for output.