-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[Security Solution] Specific Cypress executions for Rule Management team
#171868
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
Merged
MadameSheema
merged 19 commits into
elastic:main
from
MadameSheema:rule-management-cypress-execution
Nov 28, 2023
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
f143395
new rule management folder
MadameSheema 3fc3611
updating codeowners file
MadameSheema 7110b01
adding new scripts
MadameSheema 705daa9
adding ESS executions to buildkite
MadameSheema 433e1b4
adding serverless executions to buildkite
MadameSheema 92b6ec2
addking MKI scropts
MadameSheema 1d9aec7
adding execution to the quality gate pipeline
MadameSheema 2677546
excluding rule management from general scripts to avoid duplicate exe…
MadameSheema ee25e91
updates readme
MadameSheema c1641bd
fixing typo
MadameSheema f80dc53
adjustments
MadameSheema 0fa496c
more adjustments
MadameSheema 11c26ec
addressing comments
MadameSheema bfbac3e
Merge branch 'main' into rule-management-cypress-execution
MadameSheema b2d8075
addressing comments
MadameSheema 5f29d05
Merge branch 'main' into rule-management-cypress-execution
MadameSheema babfb12
Update x-pack/test/security_solution_cypress/package.json
MadameSheema 9a3db2d
Update x-pack/test/security_solution_cypress/package.json
MadameSheema 69e7c79
Update x-pack/test/security_solution_cypress/package.json
MadameSheema File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
16 changes: 16 additions & 0 deletions
16
.buildkite/scripts/steps/functional/security_serverless_rule_management.sh
This file contains hidden or 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,16 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| set -euo pipefail | ||
|
|
||
| source .buildkite/scripts/steps/functional/common.sh | ||
| source .buildkite/scripts/steps/functional/common_cypress.sh | ||
|
|
||
| export JOB=kibana-security-solution-chrome | ||
| export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} | ||
|
|
||
| echo "--- Rule Management Cypress Tests on Serverless" | ||
|
|
||
| cd x-pack/test/security_solution_cypress | ||
|
|
||
| set +e | ||
| yarn cypress:rule_management:run:serverless; status=$?; yarn junit:merge || :; exit $status |
16 changes: 16 additions & 0 deletions
16
.buildkite/scripts/steps/functional/security_serverless_rule_management_prebuilt_rules.sh
This file contains hidden or 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,16 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| set -euo pipefail | ||
|
|
||
| source .buildkite/scripts/steps/functional/common.sh | ||
| source .buildkite/scripts/steps/functional/common_cypress.sh | ||
|
|
||
| export JOB=kibana-security-solution-chrome | ||
| export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} | ||
|
|
||
| echo "--- Rule Management - Prebuilt Rules - Cypress Tests on Serverless" | ||
|
|
||
| cd x-pack/test/security_solution_cypress | ||
|
|
||
| set +e | ||
| yarn cypress:rule_management:prebuilt_rules:run:serverless; status=$?; yarn junit:merge || :; exit $status |
16 changes: 16 additions & 0 deletions
16
.buildkite/scripts/steps/functional/security_solution_rule_management.sh
This file contains hidden or 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,16 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| set -euo pipefail | ||
|
|
||
| source .buildkite/scripts/steps/functional/common.sh | ||
| source .buildkite/scripts/steps/functional/common_cypress.sh | ||
|
|
||
| export JOB=kibana-security-solution-chrome | ||
| export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} | ||
|
|
||
| echo "--- Rule Management - Security Solution Cypress Tests" | ||
|
|
||
| cd x-pack/test/security_solution_cypress | ||
|
|
||
| set +e | ||
| yarn cypress:rule_management:run:ess; status=$?; yarn junit:merge || :; exit $status |
16 changes: 16 additions & 0 deletions
16
.buildkite/scripts/steps/functional/security_solution_rule_management_prebuilt_rules.sh
This file contains hidden or 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,16 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| set -euo pipefail | ||
|
|
||
| source .buildkite/scripts/steps/functional/common.sh | ||
| source .buildkite/scripts/steps/functional/common_cypress.sh | ||
|
|
||
| export JOB=kibana-security-solution-chrome | ||
| export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} | ||
|
|
||
| echo "--- Rule Management - Prebuilt Rules - Security Solution Cypress Tests" | ||
|
|
||
| cd x-pack/test/security_solution_cypress | ||
|
|
||
| set +e | ||
| yarn cypress:rule_management:prebuilt_rules:run:ess; status=$?; yarn junit:merge || :; exit $status |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.