summaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests.sh
diff options
context:
space:
mode:
authorNicolas Lacasse <nlacasse@google.com>2019-08-13 11:20:43 -0700
committergVisor bot <gvisor-bot@google.com>2019-08-13 11:21:55 -0700
commitfa3d0e6f63d6ecc9a6566ec80e4a8c7519c6cf76 (patch)
tree20d52584852bec4e2fc8b52c79260195cded0c0f /tools/run_tests.sh
parent9769a8eaa4b384d1b7db9f06edf28a6331cd2b64 (diff)
Bump Bazel to v0.28.0
The new version has a change in behavior when using a custom platform: * Old behavior: rules that don't require a toolchain used host_platform, no matter what execution platforms are specified. * New behavior: rules that don't require a toolchain use standard platform resolution that starts with execution platforms. As part of this change, we cannot use the "extra_exectution_platforms" flag provided by the default bazelrc. I got rid of the default bazelrc file, and made our custom .bazelrc as minimal as possible. PiperOrigin-RevId: 263176802
Diffstat (limited to 'tools/run_tests.sh')
-rwxr-xr-xtools/run_tests.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/run_tests.sh b/tools/run_tests.sh
index 483b9cb50..3e7c4394d 100755
--- a/tools/run_tests.sh
+++ b/tools/run_tests.sh
@@ -45,8 +45,7 @@ readonly TEST_PACKAGES=("//pkg/..." "//runsc/..." "//tools/...")
#######################
# Install the latest version of Bazel and log the version.
-# FIXME(b/137285694): Unable to build runsc with bazel 0.28.0.
-(which use_bazel.sh && use_bazel.sh 0.27.1) || which bazel
+(which use_bazel.sh && use_bazel.sh 0.28.0) || which bazel
bazel version
# Load the kvm module.