mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 08:49:27 -04:00
## Summary Similar to https://github.com/elastic/kibana/pull/195581 Adds a pipeline that builds Kibana and starts cloud deployment without going through the CI test suites (as in normal pull-request pipeline runs). It can be useful if a developer would like to save time/compute on re-building/re-testing the whole project before deploying to the cloud. Added labels (`ci:cloud-deploy / ci:cloud-redeploy`) are required similarly to the usual CI flow. Related to: https://github.com/elastic/kibana-operations/issues/121
38 lines
886 B
JSON
38 lines
886 B
JSON
{
|
|
"name": "kibana-buildkite",
|
|
"version": "1.0.0",
|
|
"description": "Kibana Buildkite",
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"test:watch": "mocha --watch"
|
|
},
|
|
"overrides": {
|
|
"serialize-javascript": "^6.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "^18.10.0",
|
|
"axios": "^1.7.9",
|
|
"globby": "^11.1.0",
|
|
"js-yaml": "^4.1.0",
|
|
"minimatch": "^5.0.1",
|
|
"minimist": "^1.2.8",
|
|
"tslib": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.3",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/minimatch": "^3.0.5",
|
|
"@types/minimist": "^1.2.5",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^15.12.2",
|
|
"chai": "^4.3.10",
|
|
"mocha": "^11.0.1",
|
|
"nock": "^12.0.2",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"imports": {
|
|
"#pipeline-utils": "./pipeline-utils/index.ts",
|
|
"#pipeline-utils/*": "./pipeline-utils/*"
|
|
}
|
|
}
|