Pin bazel and dev dependencies
Author: mickvangelderenCreated Apr 10, 2026Updated Apr 10, 2026
Before I was able to build I had to make these changes:
- add a
.bazelversionto pin bazel
7.6.1- pin the google abseil version in
WORKSPACE
http_archive(
name = "com_google_absl",
strip_prefix = "abseil-cpp-20230125.3",
urls = ["https://github.com/abseil/abseil-cpp/archive/refs/tags/20230125.3.zip"],
)- disable bzlmod in
.bazelrc
common --enable_bzlmod=false
common --enable_workspace=trueSource: google-deepmind/lab