Skip to content

Commit 4346b52

Browse files
authored
build: fix bazel version (#19553)
Executing tests on MacOS Catalina runs into issues with bazel 3.0.0. Bazel will use the version specified in the .bazelversion file and hence no matter what is installed, if 3.0.0 is available that will run. d4d12a9 changed WORKSPACE and .bazelversion from 3.1.0 to 3.0.0 which looks to have introduced this issue. Changing back to 3.1.0 fixes tests on Catalina
1 parent 2b2ee1d commit 4346b52

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.1.0

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ http_archive(
2929
load("@build_bazel_rules_nodejs//:index.bzl", "check_bazel_version", "node_repositories", "yarn_install")
3030

3131
# The minimum bazel version to use with this repo is v3.1.0.
32-
check_bazel_version("3.0.0")
32+
check_bazel_version("3.1.0")
3333

3434
node_repositories(
3535
node_repositories = {

0 commit comments

Comments
 (0)