diff options
author | Andrei Vagin <avagin@google.com> | 2019-03-26 15:09:35 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-03-26 15:10:49 -0700 |
commit | 79aca14a0cd70720e8a8f8bd6c1499ab1ffbd8d3 (patch) | |
tree | 2ebe6faa14c22b8f7f468291def9e4aaecf1b8d0 /test/BUILD | |
parent | 9cd2b66f103c122bf8556a763d06d981f4828871 (diff) |
Use toolchain configs from bazel_0.23.0
bazel 0.24.0 isn't compatible with bazel_0.20.0 configs:
(10:32:27) ERROR:
bazel_toolchains/configs/ubuntu16_04_clang/1.1/bazel_0.20.0/default/BUILD:57:1:
no such attribute 'dynamic_runtime_libs' in 'cc_toolchain' rule
PiperOrigin-RevId: 240436868
Change-Id: Iee68c9b79d907ca2bdd124386aaa77c786e089ce
Diffstat (limited to 'test/BUILD')
-rw-r--r-- | test/BUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/BUILD b/test/BUILD index 6b83757f6..e99b4e501 100644 --- a/test/BUILD +++ b/test/BUILD @@ -24,7 +24,7 @@ platform( remote_execution_properties = """ properties: { name: "container-image" - value:"docker://gcr.io/cloud-marketplace/google/rbe-ubuntu16-04@sha256:f3120a030a19d67626ababdac79cc787e699a1aa924081431285118f87e7b375" + value:"docker://gcr.io/cloud-marketplace/google/rbe-ubuntu16-04@sha256:69c9f1652941d64a46f6f7358a44c1718f25caa5cb1ced4a58ccc5281cd183b5" } properties: { name: "dockerAddCapabilities" @@ -43,6 +43,6 @@ toolchain( ], target_compatible_with = [ ], - toolchain = "@bazel_toolchains//configs/ubuntu16_04_clang/1.1/bazel_0.20.0/default:cc-compiler-k8", + toolchain = "@bazel_toolchains//configs/ubuntu16_04_clang/1.2/bazel_0.23.0/default:cc-compiler-k8", toolchain_type = "@bazel_tools//tools/cpp:toolchain_type", ) |