-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Add weekly job to test packages with Ubuntu Elastic Agent docker…
… image (#10844) Added a new CI pipeline that runs once per week. Builds from this pipeline will run the system tests of the packages with the Elastic Agent docker image based on Ubuntu.
- Loading branch information
Showing
4 changed files
with
111 additions
and
5 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,29 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json | ||
name: integrations-schedule-weekly | ||
|
||
env: | ||
SETUP_GVM_VERSION: "v0.5.2" | ||
LINUX_AGENT_IMAGE: "golang:${GO_VERSION}" | ||
|
||
# The pipeline is triggered by the scheduler every week | ||
steps: | ||
- label: ":white_check_mark: Check go sources" | ||
key: "check" | ||
command: ".buildkite/scripts/check_sources.sh" | ||
agents: | ||
image: "${LINUX_AGENT_IMAGE}" | ||
cpu: "8" | ||
memory: "4G" | ||
|
||
- label: "Check integrations local stacks and Elastic Agent Ubuntu docker - Stack Version v8.16" | ||
trigger: "integrations" | ||
build: | ||
env: | ||
SERVERLESS: "false" | ||
FORCE_CHECK_ALL: "true" | ||
STACK_VERSION: 8.16.0-SNAPSHOT | ||
PUBLISH_COVERAGE_REPORTS: "false" | ||
ELASTIC_PACKAGE_DISABLE_ELASTIC_AGENT_WOLFI: "true" | ||
depends_on: | ||
- step: "check" | ||
allow_failure: 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
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