Skip to content

Commit bbdc18c

Browse files
author
Jay Conrod
authoredApr 6, 2020
Set minimum supported Bazel version to 2.2.0 (bazel-contrib#2419)
This only applies to the master branch, not to current release branches. This is needed for configuration transition support. 1.2.0 (the current minimum) and 2.1.0 (the version before 2.2.0) both have build failures triggered by transitions. For bazel-contrib#2219
1 parent 16bdf71 commit bbdc18c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.bazelci/presubmit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
platforms:
33
ubuntu1604:
4-
bazel: 1.2.0 # test minimum supported version of bazel on ubuntu1604 only
4+
bazel: 2.2.0 # test minimum supported version of bazel on ubuntu1604 only
55
build_targets:
66
- "..."
77
test_targets:

‎go/private/common.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def has_versioned_shared_lib_extension(path):
208208

209209
return True
210210

211-
MINIMUM_BAZEL_VERSION = "1.2.0"
211+
MINIMUM_BAZEL_VERSION = "2.2.0"
212212

213213
def as_list(v):
214214
"""Returns a list, tuple, or depset as a list."""

0 commit comments

Comments
 (0)