Skip to content

Commit bbcfe60

Browse files
authored
Merge branch 'main' into remote-es-integration-data
2 parents 457df3d + d22560e commit bbcfe60

902 files changed

Lines changed: 8314 additions & 3658 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/pipelines/on_merge.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -271,30 +271,6 @@ steps:
271271
- exit_status: '*'
272272
limit: 1
273273

274-
- command: .buildkite/scripts/steps/functional/defend_workflows.sh
275-
label: 'Defend Workflows Cypress Tests'
276-
agents:
277-
queue: n2-4-virt
278-
depends_on: build
279-
timeout_in_minutes: 60
280-
parallelism: 10
281-
retry:
282-
automatic:
283-
- exit_status: '*'
284-
limit: 1
285-
286-
- command: .buildkite/scripts/steps/functional/defend_workflows_serverless.sh
287-
label: 'Defend Workflows Cypress Tests on Serverless'
288-
agents:
289-
queue: n2-4-virt
290-
depends_on: build
291-
timeout_in_minutes: 60
292-
parallelism: 6
293-
retry:
294-
automatic:
295-
- exit_status: '*'
296-
limit: 1
297-
298274
- command: .buildkite/scripts/steps/functional/threat_intelligence.sh
299275
label: 'Threat Intelligence Cypress Tests'
300276
agents:

.buildkite/pipelines/on_merge_unsupported_ftrs.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,27 @@ steps:
6161
limit: 3
6262
- exit_status: '*'
6363
limit: 1
64+
65+
- command: .buildkite/scripts/steps/functional/defend_workflows.sh
66+
label: 'Defend Workflows Cypress Tests'
67+
agents:
68+
queue: n2-4-virt
69+
depends_on: build
70+
timeout_in_minutes: 60
71+
parallelism: 10
72+
retry:
73+
automatic:
74+
- exit_status: '*'
75+
limit: 1
76+
77+
- command: .buildkite/scripts/steps/functional/defend_workflows_serverless.sh
78+
label: 'Defend Workflows Cypress Tests on Serverless'
79+
agents:
80+
queue: n2-4-virt
81+
depends_on: build
82+
timeout_in_minutes: 60
83+
parallelism: 6
84+
retry:
85+
automatic:
86+
- exit_status: '*'
87+
limit: 1

.buildkite/pipelines/pull_request/base.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -249,30 +249,6 @@ steps:
249249
- exit_status: '*'
250250
limit: 1
251251

252-
- command: .buildkite/scripts/steps/functional/defend_workflows.sh
253-
label: 'Defend Workflows Cypress Tests'
254-
agents:
255-
queue: n2-4-virt
256-
depends_on: build
257-
timeout_in_minutes: 60
258-
parallelism: 16
259-
retry:
260-
automatic:
261-
- exit_status: '*'
262-
limit: 1
263-
264-
- command: .buildkite/scripts/steps/functional/defend_workflows_serverless.sh
265-
label: 'Defend Workflows Cypress Tests on Serverless'
266-
agents:
267-
queue: n2-4-virt
268-
depends_on: build
269-
timeout_in_minutes: 60
270-
parallelism: 6
271-
retry:
272-
automatic:
273-
- exit_status: '*'
274-
limit: 1
275-
276252
- command: .buildkite/scripts/steps/functional/threat_intelligence.sh
277253
label: 'Threat Intelligence Cypress Tests'
278254
agents:
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
steps:
2+
- command: .buildkite/scripts/steps/functional/defend_workflows.sh
3+
label: 'Defend Workflows Cypress Tests'
4+
agents:
5+
queue: n2-4-virt
6+
depends_on: build
7+
timeout_in_minutes: 60
8+
parallelism: 16
9+
retry:
10+
automatic:
11+
- exit_status: '*'
12+
limit: 1
13+
14+
- command: .buildkite/scripts/steps/functional/defend_workflows_serverless.sh
15+
label: 'Defend Workflows Cypress Tests on Serverless'
16+
agents:
17+
queue: n2-4-virt
18+
depends_on: build
19+
timeout_in_minutes: 60
20+
parallelism: 6
21+
retry:
22+
automatic:
23+
- exit_status: '*'
24+
limit: 1

.buildkite/scripts/pipelines/pull_request/pipeline.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,19 @@ const uploadPipeline = (pipelineContent: string | object) => {
179179
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/cypress_burn.yml'));
180180
}
181181

182+
if (
183+
(await doAnyChangesMatch([
184+
/^packages\/kbn-securitysolution-.*/,
185+
/^x-pack\/plugins\/security_solution/,
186+
/^x-pack\/test\/defend_workflows_cypress/,
187+
/^x-pack\/test\/security_solution_cypress/,
188+
/^fleet_packages\.json/,
189+
])) ||
190+
GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
191+
) {
192+
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/defend_workflows.yml'));
193+
}
194+
182195
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/post_build.yml'));
183196

184197
// remove duplicated steps

api_docs/actions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/actions
88
title: "actions"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the actions plugin
11-
date: 2023-12-14
11+
date: 2023-12-18
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions']
1313
---
1414
import actionsObj from './actions.devdocs.json';

api_docs/advanced_settings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/advancedSettings
88
title: "advancedSettings"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the advancedSettings plugin
11-
date: 2023-12-14
11+
date: 2023-12-18
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings']
1313
---
1414
import advancedSettingsObj from './advanced_settings.devdocs.json';

api_docs/ai_assistant_management_observability.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiAssistantManagementObservability
88
title: "aiAssistantManagementObservability"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the aiAssistantManagementObservability plugin
11-
date: 2023-12-14
11+
date: 2023-12-18
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiAssistantManagementObservability']
1313
---
1414
import aiAssistantManagementObservabilityObj from './ai_assistant_management_observability.devdocs.json';

api_docs/ai_assistant_management_selection.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiAssistantManagementSelection
88
title: "aiAssistantManagementSelection"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the aiAssistantManagementSelection plugin
11-
date: 2023-12-14
11+
date: 2023-12-18
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiAssistantManagementSelection']
1313
---
1414
import aiAssistantManagementSelectionObj from './ai_assistant_management_selection.devdocs.json';

api_docs/aiops.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiops
88
title: "aiops"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the aiops plugin
11-
date: 2023-12-14
11+
date: 2023-12-18
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops']
1313
---
1414
import aiopsObj from './aiops.devdocs.json';

0 commit comments

Comments
 (0)