diff options
author | dmauro <dmauro@google.com> | 2021-05-25 18:50:59 (GMT) |
---|---|---|
committer | Andy Soffer <asoffer@google.com> | 2021-06-02 21:54:36 (GMT) |
commit | 8ceecc27c7610b533a897cbb9896c0e24c7f1951 (patch) | |
tree | d4d678894de18233c98ad7ac6283ebe25d508717 /ci | |
parent | a3460d1aeeaa43fdf137a6adefef10ba0b59fe4b (diff) | |
download | googletest-8ceecc27c7610b533a897cbb9896c0e24c7f1951.zip googletest-8ceecc27c7610b533a897cbb9896c0e24c7f1951.tar.gz googletest-8ceecc27c7610b533a897cbb9896c0e24c7f1951.tar.bz2 |
Googletest export
Updates Linux docker image to use Bazel 4.1.0 and GCC 11.1
Updates Bazel dependencies
Removes the last usage of the deprecated and removed Python2
PiperOrigin-RevId: 375759184
Diffstat (limited to 'ci')
-rw-r--r-- | ci/linux-presubmit.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/linux-presubmit.sh b/ci/linux-presubmit.sh index d02130c..6bea1cd 100644 --- a/ci/linux-presubmit.sh +++ b/ci/linux-presubmit.sh @@ -31,7 +31,7 @@ set -euox pipefail -readonly LINUX_LATEST_CONTAINER="gcr.io/google.com/absl-177019/linux_hybrid-latest:20201008" +readonly LINUX_LATEST_CONTAINER="gcr.io/google.com/absl-177019/linux_hybrid-latest:20210525" readonly LINUX_GCC_FLOOR_CONTAINER="gcr.io/google.com/absl-177019/linux_gcc-floor:20201015" if [[ -z ${GTEST_ROOT:-} ]]; then @@ -95,6 +95,7 @@ for std in ${STD}; do --copt="-Wall" \ --copt="-Werror" \ --define="absl=${absl}" \ + --distdir="/bazel-distdir" \ --keep_going \ --show_timestamps \ --test_output=errors @@ -116,6 +117,7 @@ for std in ${STD}; do --copt="-Wall" \ --copt="-Werror" \ --define="absl=${absl}" \ + --distdir="/bazel-distdir" \ --keep_going \ --linkopt="--gcc-toolchain=/usr/local" \ --show_timestamps \ |