Skip to content

Toolchain configs for marketplace.gcr.io/google/rbe-ubuntu16-04, Bazel 4.1.0 (2021/05/21)

Compare
Choose a tag to compare
@philwo philwo released this 21 May 18:02

This is a manually created emergency patch release for bazel-toolchains 4.0.0 to restore compatibility with Bazel 4.1.0.

It is the same as bazel-toolchains 4.0.0, but includes a fix for a wrong version check in rules/rbe_repo/build_gen.bzl.

You can use it like this:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_toolchains",
    sha256 = "179ec02f809e86abf56356d8898c8bd74069f1bd7c56044050c2cd3d79d0e024",
    strip_prefix = "bazel-toolchains-4.1.0",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
        "https:/bazelbuild/bazel-toolchains/releases/download/4.1.0/bazel-toolchains-4.1.0.tar.gz",
    ],
)

load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")

# Creates a default toolchain config for RBE.
# Use this as is if you are using the rbe_ubuntu16_04 container,
# otherwise refer to RBE docs.
rbe_autoconfig(name = "rbe_default")