forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Move cypress burn tests out of base pull request pipeline (elast…
…ic#169326) Currently operations does not have a good mechanism for communicating soft failures, leading to confusion on pull requests. We're tracking support for soft failures at elastic#169244. For example, in elastic#169309, it doesn't makes sense for the author to be responsible for fixing flakiness here, so we need to make it clear it can be ignored or find a way to skip this step in similar situations. This moves the cypress burn out of the base pull request pipeline, behind the `ci:all-cypress-suites` and `ci:cypress-burn` labels. I'm open to all improvements here, not sure this quite finds the right balance between stability and noise.
- Loading branch information
Showing
3 changed files
with
50 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
steps: | ||
- command: .buildkite/scripts/steps/functional/defend_workflows_burn.sh | ||
label: 'Defend Workflows Cypress Tests, burning changed specs' | ||
agents: | ||
queue: n2-4-virt | ||
depends_on: build | ||
timeout_in_minutes: 60 | ||
soft_fail: true | ||
parallelism: 1 | ||
retry: | ||
automatic: false | ||
|
||
- command: .buildkite/scripts/steps/functional/defend_workflows_serverless_burn.sh | ||
label: 'Defend Workflows Cypress Tests on Serverless, burning changed specs' | ||
agents: | ||
queue: n2-4-virt | ||
depends_on: build | ||
timeout_in_minutes: 60 | ||
soft_fail: true | ||
parallelism: 1 | ||
retry: | ||
automatic: false | ||
|
||
- command: .buildkite/scripts/steps/functional/security_solution_burn.sh | ||
label: 'Security Solution Cypress tests, burning changed specs' | ||
agents: | ||
queue: n2-4-spot | ||
depends_on: build | ||
timeout_in_minutes: 60 | ||
parallelism: 1 | ||
retry: | ||
automatic: false | ||
soft_fail: true | ||
|
||
- command: .buildkite/scripts/steps/functional/osquery_cypress_burn.sh | ||
label: 'Osquery Cypress Tests, burning changed specs' | ||
agents: | ||
queue: n2-4-spot | ||
depends_on: build | ||
timeout_in_minutes: 50 | ||
soft_fail: true | ||
retry: | ||
automatic: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters