-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
(cherry picked from commit 5195332) Co-authored-by: Mashhur <[email protected]>
- Loading branch information
1 parent
d115598
commit 2f3f6a9
Showing
3 changed files
with
80 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json | ||
|
||
agents: | ||
image: "docker.elastic.co/ci-agent-images/platform-ingest/buildkite-agent-logstash-ci" | ||
cpu: "2" | ||
memory: "4Gi" | ||
ephemeralStorage: "64Gi" | ||
|
||
steps: | ||
# todo: add a step for 8.latest when Health Report MVP is landed | ||
- label: ":logstash: Health Report Integration tests on main branch." | ||
command: | | ||
source .buildkite/scripts/common/vm-agent.sh | ||
./.buildkite/scripts/health-report-tests/main.sh | ||
retry: | ||
automatic: | ||
- limit: 3 |
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,9 @@ | ||
#!/usr/bin/env bash | ||
set -eo pipefail | ||
|
||
# TODO: | ||
# if branch is specified with X.Y, pull branches from ACTIVE_BRANCHES_URL="https://raw.githubusercontent.com/elastic/logstash/main/ci/branches.json", parse and use | ||
# build Logstash from specificed (ex: 8.x -> translates to 8.latest, 8.16) branch, defaults to main | ||
# install requirements of the python package and run main.py | ||
|
||
|
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