diff --git a/bazel/development0.bzl b/bazel/development0.bzl index 427b03cbaddb8..c816243420727 100644 --- a/bazel/development0.bzl +++ b/bazel/development0.bzl @@ -57,10 +57,10 @@ def gl_cpp_development0(name = None): http_archive, name = "com_google_benchmark", urls = [ - "https://github.com/google/benchmark/archive/v1.8.4.tar.gz", + "https://github.com/google/benchmark/archive/v1.8.5.tar.gz", ], - sha256 = "3e7059b6b11fb1bbe28e33e02519398ca94c1818874ebed18e504dc6f709be45", - strip_prefix = "benchmark-1.8.4", + sha256 = "d26789a2b46d8808a48a4556ee58ccc7c497fcd4c0af9b90197674a81e04798a", + strip_prefix = "benchmark-1.8.5", ) # A YAML parser and generator, this is only used in //docfx and //generator. diff --git a/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile index e27dc442ee03b..f5c2f408cf1b4 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile @@ -93,7 +93,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.0.tar.gz | \ ldconfig && cd /var/tmp && rm -fr build WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.4.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE="Release" \ diff --git a/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile index df9052e0621ad..2529094f24a65 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile @@ -93,7 +93,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.0.tar.gz | \ cd /var/tmp && rm -fr build WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.4.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_CXX_STANDARD=14 \ diff --git a/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile index 4df074e1d21cd..c79b1bbe862b6 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile @@ -95,7 +95,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.0.tar.gz | \ cd /var/tmp && rm -fr build WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.4.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_CXX_STANDARD=20 \ diff --git a/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile b/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile index 4e50b9097fbf3..6e24cf45e1faf 100644 --- a/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile +++ b/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile @@ -44,7 +44,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.0.tar.gz | \ # Download and compile Google microbenchmark support library: WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.4.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE="Release" \ diff --git a/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile b/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile index 35c6075dd4683..edcb3eaa411d6 100644 --- a/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile +++ b/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile @@ -82,7 +82,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.0.tar.gz | \ cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/benchmark -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.4.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.8.5.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE="Release" \