Skip to content

Commit

Permalink
Update pipelines with needed changes (#39946)
Browse files Browse the repository at this point in the history
Add "set -eo pipefail" to return error if any of commands will fail.
  • Loading branch information
ev1yehor authored Jun 20, 2024
1 parent 89669df commit e6d7b43
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .buildkite/auditbeat/auditbeat-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C auditbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/filebeat/filebeat-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C filebeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/heartbeat/heartbeat-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C heartbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/libbeat/pipeline.libbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C libbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/metricbeat/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C metricbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/packetbeat/pipeline.packetbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C packetbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/winlogbeat/pipeline.winlogbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ steps:
steps:
- label: "Winlogbeat Run check/update"
command: |
set -eo pipefail
make -C winlogbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/x-pack/pipeline.xpack.auditbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C x-pack/auditbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/x-pack/pipeline.xpack.dockerlogbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C x-pack/dockerlogbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/x-pack/pipeline.xpack.filebeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C x-pack/filebeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/x-pack/pipeline.xpack.heartbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C x-pack/heartbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/x-pack/pipeline.xpack.libbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C x-pack/libbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/x-pack/pipeline.xpack.metricbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C x-pack/metricbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/x-pack/pipeline.xpack.osquerybeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C x-pack/osquerybeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/x-pack/pipeline.xpack.packetbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C x-pack/packetbeat check update
make check-no-changes
retry:
Expand Down
1 change: 1 addition & 0 deletions .buildkite/x-pack/pipeline.xpack.winlogbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ steps:
steps:
- label: "Run check/update"
command: |
set -eo pipefail
make -C x-pack/winlogbeat check update
make check-no-changes
retry:
Expand Down

0 comments on commit e6d7b43

Please sign in to comment.