Skip to content

Commit

Permalink
chore(deps): update benchmark to v1.8.5 (#14489)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot authored Jul 18, 2024
1 parent c1f97cd commit b1b2f3e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions bazel/development0.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down
2 changes: 1 addition & 1 deletion ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down
2 changes: 1 addition & 1 deletion ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down

0 comments on commit b1b2f3e

Please sign in to comment.