Skip to content

Commit

Permalink
ci(buildbot): remove --keep_going option from Bazel build
Browse files Browse the repository at this point in the history
Due to bazelbuild/bazel#7674, -k will miss package loading errors.
  • Loading branch information
schroederc committed Mar 8, 2019
1 parent 3802cc6 commit 2813eec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ bazelKytheSteps.addStep(steps.GitHub(repourl=util.Property('repository', 'git://
mode='full', method='copy'))
bazelBinEnv = {'DEFAULT_BAZEL': '/bin/false', 'BAZEL_VERSION': util.Property('bazel_version', bazelMaxVersion)}
bazelKytheSteps.addStep(steps.ShellCommand(
command=["bazel", "test", "-k",
command=["bazel", "test",
util.Property('bazel_flags', default=[]),
util.Property('bazel_targets', default=['//...'])],
env=bazelBinEnv))
Expand Down

0 comments on commit 2813eec

Please sign in to comment.