mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Adjust cypress jobs config (#162729)
## Summary Adjust cypress buildkite job configs --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
1a30dfa526
commit
02a43a1dd0
11 changed files with 18 additions and 26 deletions
|
@ -8,8 +8,6 @@ steps:
|
|||
parallelism: 2
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
|
@ -24,8 +22,6 @@ steps:
|
|||
parallelism: 6
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
|
|
|
@ -8,8 +8,6 @@ steps:
|
|||
parallelism: 6
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
|
|
|
@ -8,7 +8,7 @@ steps:
|
|||
parallelism: 4
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
- "target/kibana-security-solution/**/*"
|
||||
|
|
|
@ -7,7 +7,7 @@ steps:
|
|||
timeout_in_minutes: 120
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
- "target/kibana-security-solution/**/*"
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
steps:
|
||||
- command: .buildkite/scripts/steps/functional/security_solution.sh
|
||||
label: 'Security Solution Tests'
|
||||
label: 'Security Solution Cypress Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 60
|
||||
parallelism: 7
|
||||
parallelism: 10
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
- "target/kibana-security-solution/**/*"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
steps:
|
||||
- command: .buildkite/scripts/steps/functional/security_solution_explore.sh
|
||||
label: 'Explore - Security Solution Tests'
|
||||
label: 'Explore - Security Solution Cypress Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
|
@ -8,7 +8,7 @@ steps:
|
|||
parallelism: 2
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
- "target/kibana-security-solution/**/*"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
steps:
|
||||
- command: .buildkite/scripts/steps/functional/security_solution_investigations.sh
|
||||
label: 'Investigations - Security Solution Tests'
|
||||
label: 'Investigations - Security Solution Cypress Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
|
@ -8,7 +8,7 @@ steps:
|
|||
parallelism: 4
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
- "target/kibana-security-solution/**/*"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
steps:
|
||||
- command: .buildkite/scripts/steps/functional/threat_intelligence.sh
|
||||
label: 'Threat Intelligence Tests'
|
||||
label: 'Threat Intelligence Cypress Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
|
@ -8,8 +8,6 @@ steps:
|
|||
parallelism: 2
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
|
|
|
@ -8,6 +8,6 @@ source .buildkite/scripts/steps/functional/common_cypress.sh
|
|||
export JOB=kibana-security-solution-chrome
|
||||
export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION}
|
||||
|
||||
echo "--- Security Solution tests (Chrome)"
|
||||
echo "--- Security Solution Cypress tests (Chrome)"
|
||||
|
||||
yarn --cwd x-pack/plugins/security_solution cypress:run
|
||||
|
|
|
@ -8,6 +8,6 @@ source .buildkite/scripts/steps/functional/common_cypress.sh
|
|||
export JOB=kibana-threat-intelligence-chrome
|
||||
export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION}
|
||||
|
||||
echo "--- Threat Intelligence tests (Chrome)"
|
||||
echo "--- Threat Intelligence Cypress tests (Chrome)"
|
||||
|
||||
yarn --cwd x-pack/plugins/threat_intelligence cypress:run
|
||||
|
|
|
@ -327,7 +327,7 @@ export const cli = () => {
|
|||
concurrency: (argv.concurrency as number | undefined)
|
||||
? (argv.concurrency as number)
|
||||
: !isOpen
|
||||
? 3
|
||||
? 2
|
||||
: 1,
|
||||
}
|
||||
).then((results) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue