From 95126be791647592f8b0ed5426231937cc6bd936 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 2 Dec 2024 18:29:18 +0100 Subject: [PATCH] chore(deps): update benchmark to v1.9.1 (#14863) --- bazel/development0.bzl | 6 +++--- ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bazel/development0.bzl b/bazel/development0.bzl index 4340f77b5d158..d89057647f8aa 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.9.0.tar.gz", + "https://github.com/google/benchmark/archive/v1.9.1.tar.gz", ], - sha256 = "35a77f46cc782b16fac8d3b107fbfbb37dcd645f7c28eee19f3b8e0758b48994", - strip_prefix = "benchmark-1.9.0", + sha256 = "32131c08ee31eeff2c8968d7e874f3cb648034377dfc32a4c377fa8796d84981", + strip_prefix = "benchmark-1.9.1", ) # 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 68ff59de1a6c8..d1a499eb4826b 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.2.tar.gz | \ ldconfig && cd /var/tmp && rm -fr build WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.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 595042f6ec64b..e0de857d0ee04 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.2.tar.gz | \ cd /var/tmp && rm -fr build WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.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 1eb1210a519fa..b1d4056fe153b 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.2.tar.gz | \ cd /var/tmp && rm -fr build WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.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 e8aa1b7925541..846d795610cf6 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.2.tar.gz | \ # Download and compile Google microbenchmark support library: WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.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 2156d3f0fef03..78970bd768f66 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.2.tar.gz | \ cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/benchmark -RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE="Release" \