diff options
author | Derek Mauro <dmauro@google.com> | 2022-06-21 19:27:03 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-06-21 19:27:37 (GMT) |
commit | 7df7853ea02371f6d24ccf4a0cf9e16553d23d05 (patch) | |
tree | 3488b38f9dd78694c916b20821abf150126835d0 /ci | |
parent | 86add13493e5c881d7e4ba77fb91c1f57752b3a4 (diff) | |
download | googletest-7df7853ea02371f6d24ccf4a0cf9e16553d23d05.zip googletest-7df7853ea02371f6d24ccf4a0cf9e16553d23d05.tar.gz googletest-7df7853ea02371f6d24ccf4a0cf9e16553d23d05.tar.bz2 |
Update GCC floor container used by CI to fix the Bazel cache error
PiperOrigin-RevId: 456323043
Change-Id: I86e3d52b72b51c2d4e96f536daa7f84a52c598f5
Diffstat (limited to 'ci')
-rw-r--r-- | ci/linux-presubmit.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/linux-presubmit.sh b/ci/linux-presubmit.sh index 8d00bca..0ee5670 100644 --- a/ci/linux-presubmit.sh +++ b/ci/linux-presubmit.sh @@ -32,7 +32,7 @@ set -euox pipefail readonly LINUX_LATEST_CONTAINER="gcr.io/google.com/absl-177019/linux_hybrid-latest:20220217" -readonly LINUX_GCC_FLOOR_CONTAINER="gcr.io/google.com/absl-177019/linux_gcc-floor:20210617" +readonly LINUX_GCC_FLOOR_CONTAINER="gcr.io/google.com/absl-177019/linux_gcc-floor:20220621" if [[ -z ${GTEST_ROOT:-} ]]; then GTEST_ROOT="$(realpath $(dirname ${0})/..)" @@ -78,6 +78,7 @@ time docker run \ --copt="-Werror" \ --copt="-Wuninitialized" \ --copt="-Wno-error=pragmas" \ + --distdir="/bazel-distdir" \ --keep_going \ --show_timestamps \ --test_output=errors |