Skip to content

Commit

Permalink
Fix beats serverless tests and enable them in all CI builds (#4501)
Browse files Browse the repository at this point in the history
* Fix serverless packages
* enable beats serverless tests for all CI builds
  • Loading branch information
pchila authored Mar 29, 2024
1 parent 4cf1253 commit d6f5035
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ steps:
- label: "Serverless Beats Tests"
key: "serverless-beats-integration-tests"
command: ".buildkite/scripts/steps/beats_tests.sh"
if: "build.env('CRON') == 'yes'"
# if: "build.env('CRON') == 'yes'"
agents:
provider: "gcp"
machineType: "n1-standard-8"
Expand Down
2 changes: 1 addition & 1 deletion pkg/testing/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ func (r *Runner) getBuilds(b OSBatch) []Build {
var serverlessPackages []string
for _, p := range packages {
if slices.Contains([]string{"targz", "zip"}, p) {
packages = append(packages, p)
serverlessPackages = append(serverlessPackages, p)
}
}
packages = serverlessPackages
Expand Down

0 comments on commit d6f5035

Please sign in to comment.