-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Separated extended testing pipeline * remaned to integration pipeline * Added concurrency group and BEAT_NAME * removed BEAT_NAME var from Serverless Beats tests (cherry picked from commit 6380ea5) Co-authored-by: Pavel Zorin <pavel.zorin@elastic.co>
- Loading branch information
1 parent
dc5e90b
commit 390f52c
Showing
5 changed files
with
75 additions
and
50 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
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,73 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json | ||
|
||
env: | ||
DOCKER_REGISTRY: "docker.elastic.co" | ||
VAULT_PATH: "kv/ci-shared/observability-ingest/cloud/gcp" | ||
|
||
steps: | ||
- label: "Serverless integration test" | ||
key: "serverless-integration-tests" | ||
concurrency_group: elastic-agent-extended-testing/serverless-integration | ||
concurrency: 8 | ||
env: | ||
BEAT_NAME: "elastic-agent" | ||
command: ".buildkite/scripts/steps/integration_tests.sh serverless integration:single TestLogIngestionFleetManaged" #right now, run a single test in serverless mode as a sort of smoke test, instead of re-running the entire suite | ||
artifact_paths: | ||
- "build/TEST-**" | ||
- "build/diagnostics/*" | ||
agents: | ||
provider: "gcp" | ||
machineType: "n1-standard-8" | ||
notify: | ||
- github_commit_status: | ||
context: "Serverless integration test" | ||
|
||
- label: "Extended runtime leak tests" | ||
key: "extended-integration-tests" | ||
concurrency_group: elastic-agent-extended-testing/leak-tests | ||
concurrency: 8 | ||
env: | ||
BEAT_NAME: "elastic-agent" | ||
command: ".buildkite/scripts/steps/integration_tests.sh stateful integration:TestForResourceLeaks" | ||
artifact_paths: | ||
- "build/TEST-**" | ||
- "build/diagnostics/*" | ||
agents: | ||
provider: "gcp" | ||
machineType: "n1-standard-8" | ||
notify: | ||
- github_commit_status: | ||
context: "Extended runtime leak tests" | ||
|
||
- label: "Integration tests" | ||
key: "integration-tests" | ||
concurrency_group: elastic-agent-extended-testing/integration | ||
concurrency: 8 | ||
env: | ||
BEAT_NAME: "elastic-agent" | ||
command: ".buildkite/scripts/steps/integration_tests.sh stateful" | ||
artifact_paths: | ||
- "build/TEST-**" | ||
- "build/diagnostics/*" | ||
agents: | ||
provider: "gcp" | ||
machineType: "n1-standard-8" | ||
notify: | ||
- github_commit_status: | ||
context: "Integration tests" | ||
|
||
- label: "Serverless Beats Tests" | ||
key: "serverless-beats-integration-tests" | ||
concurrency_group: elastic-agent-extended-testing/beats-integration | ||
concurrency: 8 | ||
command: ".buildkite/scripts/steps/beats_tests.sh" | ||
# if: "build.env('CRON') == 'yes'" | ||
agents: | ||
provider: "gcp" | ||
machineType: "n1-standard-8" | ||
retry: | ||
manual: | ||
allowed: true | ||
notify: | ||
- github_commit_status: | ||
context: "Serverless Beats Tests" |
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