Skip to content

Commit

Permalink
Merge pull request #32563 from jmhbnz/master
Browse files Browse the repository at this point in the history
Add pipefail for etcd verify presubmit
  • Loading branch information
k8s-ci-robot authored May 5, 2024
2 parents cb830b2 + 03ce64e commit 0dc2e87
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config/jobs/etcd/etcd-presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ presubmits:
args:
- -c
- |
make verify
make fix
set -euo pipefail
export PATH=$GOPATH/bin:$PATH && make verify
export PATH=$GOPATH/bin:$PATH && make fix
DIFF=$(git status --porcelain)
if [ -n "$DIFF" ]; then
echo "These files were modified:"
Expand Down

0 comments on commit 0dc2e87

Please sign in to comment.