From 19de967857fd0101b725ba8042699aac234b72b6 Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Fri, 11 Nov 2022 11:18:38 +0100 Subject: [PATCH] RBE: Update toolchain with bazel-toolchains 5.1.2 release Due to this platform style migration: [1] the RBE toolchain needs to be updated to use the latest rbe_config_gen from bazel-toolchains (at least version 5.1.2 so that it contains: [2]). This change makes RBE build forwards compatible so that Bazel could be updated to the upcoming major 6.0 release. [1] https://github.com/bazelbuild/bazel/issues/8622 [2] https://github.com/bazelbuild/bazel-toolchains/commit/8c717f8258cd5f6c7a45b97d974292755852b658 Change-Id: Ia3a108fa05b1d52cd2018ba901ffd4c9e55ae8ab --- WORKSPACE | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 5746fabf4..ceb0e4866 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -12,11 +12,11 @@ load( http_archive( name = "rbe_jdk11", - sha256 = "766796de71916118e528b9f4334c29c9c9b4e926227bf3264dee555e6a4306c8", - strip_prefix = "rbe_autoconfig-2.0.0", + sha256 = "dbcfd6f26589ef506b91fe03a12dc559ca9c84699e4cf6381150522287f0e6f6", + strip_prefix = "rbe_autoconfig-3.1.0", urls = [ - "https://gerrit-bazel.storage.googleapis.com/rbe_autoconfig/v2.0.0.tar.gz", - "https://github.com/davido/rbe_autoconfig/archive/v2.0.0.tar.gz", + "https://gerrit-bazel.storage.googleapis.com/rbe_autoconfig/v3.1.0.tar.gz", + "https://github.com/davido/rbe_autoconfig/archive/v3.1.0.tar.gz", ], )