Skip to content

Commit

Permalink
.buildkite/auditbeat - Run integ tests on non-PR builds (#41919)
Browse files Browse the repository at this point in the history
We want to run Auditbeat integration tests regularly on non-PR (main
branch builds).

This will help ensure problems are not missed in the various integration
test systems, and help prepare for adding Ubuntu 24.04 to the list of
officially supported systems.
  • Loading branch information
mjwolf authored Feb 10, 2025
1 parent d43b3b7 commit 8122c43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .buildkite/auditbeat/auditbeat-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ steps:
steps:
- label: ":ubuntu: Auditbeat: Ubuntu x86_64 Integration Tests -- {{matrix.image}}"
key: "auditbeat-extended-integ-tests"
if: build.env("GITHUB_PR_LABELS") =~ /.*integrations.*/
if: build.env("BUILDKITE_PULL_REQUEST") == "false" || build.env("GITHUB_PR_LABELS") =~ /.*integrations.*/
command: |
set -euo pipefail
cd auditbeat
Expand Down Expand Up @@ -236,7 +236,7 @@ steps:

- label: ":ubuntu: Auditbeat: Ubuntu arm64 Integration Tests -- {{matrix.image}}"
key: "auditbeat-extended-arm64-integ-tests"
if: build.env("GITHUB_PR_LABELS") =~ /.*integrations.*/
if: build.env("BUILDKITE_PULL_REQUEST") == "false" || build.env("GITHUB_PR_LABELS") =~ /.*integrations.*/
command: |
set -euo pipefail
cd auditbeat
Expand Down

0 comments on commit 8122c43

Please sign in to comment.