Skip to content

Commit

Permalink
fix dinamic pipeline's condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Siarhei Harbuz committed Mar 13, 2024
1 parent 1a839aa commit 5543e57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .buildkite/scripts/generate_xpack_metricbeat_pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ else
fi

#TODO: replace by commented-out below condition when issues mentioned in the PR https://github.com/elastic/beats/pull/38081 are resolved
if [[ are_conditions_met_aws_tests || are_conditions_met_macos_tests ]]; then
if are_conditions_met_aws_tests || are_conditions_met_macos_tests ; then
cat >> $pipelineName <<- YAML
- group: "Extended Tests"
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/scripts/generate_xpack_packetbeat_pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ else
exit 0
fi

if [[ are_conditions_met_arm_tests || are_conditions_met_macos_tests ]]; then
if are_conditions_met_arm_tests || are_conditions_met_macos_tests ; then
cat >> $pipelineName <<- YAML
- group: "Extended Tests"
Expand Down

0 comments on commit 5543e57

Please sign in to comment.