Skip to content

Commit

Permalink
Set default Bazel version on CI to 0.22.0. (bazelbuild#508)
Browse files Browse the repository at this point in the history
This commit unblocks CI by avoiding the bad release 0.23.0: bazelbuild/bazel#7555
  • Loading branch information
fweikert authored and joeleba committed Jun 17, 2019
1 parent 62a74b0 commit 6828fba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions buildkite/bazelci.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,10 @@ def execute_commands(
incompatible_flags,
bazel_version=None,
):
# TODO(https://github.com/bazelbuild/bazel/issues/7555): remove this hack once the
# latest Bazel release is no longer broken.
bazel_version = bazel_version or "0.22.0"

build_only = build_only or "test_targets" not in task_config
test_only = test_only or "build_targets" not in task_config
if build_only and test_only:
Expand Down

0 comments on commit 6828fba

Please sign in to comment.