Skip to content

Commit 598c279

Browse files
committed
tolerate when bazel shutdown errors out
pull-kubernetes-e2e-gce-rbe are still failing with the following: ``` INFO: Waited 10 seconds for server process (pid=72) to terminate. FATAL: Attempted to kill stale server process (pid=72) using SIGKILL, but it did not die in a timely fashion. make: *** [Makefile:626: bazel-release] Error 36 make: Leaving directory '/home/prow/go/src/k8s.io/kubernetes' ``` we have added a pkill just after the line for bazel shutdown, so let's continue to give the pkill a chance to run.
1 parent 415b3ed commit 598c279

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/root/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,6 @@ bazel-release:
623623
else
624624
bazel-release:
625625
bazel build //build/release-tars
626-
bazel shutdown
626+
bazel shutdown || true
627627
pkill ^bazel || true
628628
endif

0 commit comments

Comments
 (0)