Skip to content

Commit 95126be

Browse files
authored
chore(deps): update benchmark to v1.9.1 (#14863)
1 parent 95ae5a2 commit 95126be

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

bazel/development0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ def gl_cpp_development0(name = None):
5757
http_archive,
5858
name = "com_google_benchmark",
5959
urls = [
60-
"https://github.com/google/benchmark/archive/v1.9.0.tar.gz",
60+
"https://github.com/google/benchmark/archive/v1.9.1.tar.gz",
6161
],
62-
sha256 = "35a77f46cc782b16fac8d3b107fbfbb37dcd645f7c28eee19f3b8e0758b48994",
63-
strip_prefix = "benchmark-1.9.0",
62+
sha256 = "32131c08ee31eeff2c8968d7e874f3cb648034377dfc32a4c377fa8796d84981",
63+
strip_prefix = "benchmark-1.9.1",
6464
)
6565

6666
# A YAML parser and generator, this is only used in //docfx and //generator.

ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.2.tar.gz | \
9393
ldconfig && cd /var/tmp && rm -fr build
9494

9595
WORKDIR /var/tmp/build
96-
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \
96+
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.tar.gz | \
9797
tar -xzf - --strip-components=1 && \
9898
cmake \
9999
-DCMAKE_BUILD_TYPE="Release" \

ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.2.tar.gz | \
9393
cd /var/tmp && rm -fr build
9494

9595
WORKDIR /var/tmp/build
96-
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \
96+
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.tar.gz | \
9797
tar -xzf - --strip-components=1 && \
9898
cmake \
9999
-DCMAKE_CXX_STANDARD=14 \

ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.2.tar.gz | \
9595
cd /var/tmp && rm -fr build
9696

9797
WORKDIR /var/tmp/build
98-
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \
98+
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.tar.gz | \
9999
tar -xzf - --strip-components=1 && \
100100
cmake \
101101
-DCMAKE_CXX_STANDARD=20 \

ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.2.tar.gz | \
4444

4545
# Download and compile Google microbenchmark support library:
4646
WORKDIR /var/tmp/build
47-
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \
47+
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.tar.gz | \
4848
tar -xzf - --strip-components=1 && \
4949
cmake \
5050
-DCMAKE_BUILD_TYPE="Release" \

ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ RUN curl -fsSL https://github.com/google/googletest/archive/v1.15.2.tar.gz | \
8282
cd /var/tmp && rm -fr build
8383

8484
WORKDIR /var/tmp/build/benchmark
85-
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.0.tar.gz | \
85+
RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.1.tar.gz | \
8686
tar -xzf - --strip-components=1 && \
8787
cmake \
8888
-DCMAKE_BUILD_TYPE="Release" \

0 commit comments

Comments
 (0)