Skip to content

Commit 4b4834a

Browse files
committed
chore(deps): update googletest to v1.17.0
1 parent 7d3feab commit 4b4834a

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ def gl_cpp_workspace0(name = None):
115115
http_archive,
116116
name = "com_google_googletest",
117117
urls = [
118-
"https://github.com/google/googletest/archive/v1.16.0.tar.gz",
118+
"https://github.com/google/googletest/archive/v1.17.0.tar.gz",
119119
],
120-
sha256 = "78c676fc63881529bf97bf9d45948d905a66833fbfa5318ea2cd7478cb98f399",
121-
strip_prefix = "googletest-1.16.0",
120+
sha256 = "65fab701d9829d38cb77c14acdc431d2108bfdbf8979e40eb8ae567edf10b27c",
121+
strip_prefix = "googletest-1.17.0",
122122
)
123123

124124
# Load the googleapis dependency.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz |
8383
ldconfig && cd /var/tmp && rm -fr build
8484

8585
WORKDIR /var/tmp/build
86-
RUN curl -fsSL https://github.com/google/googletest/archive/v1.16.0.tar.gz | \
86+
RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \
8787
tar -xzf - --strip-components=1 && \
8888
cmake \
8989
-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
@@ -81,7 +81,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz |
8181
cd /var/tmp && rm -fr build
8282

8383
WORKDIR /var/tmp/build
84-
RUN curl -fsSL https://github.com/google/googletest/archive/v1.16.0.tar.gz | \
84+
RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \
8585
tar -xzf - --strip-components=1 && \
8686
cmake \
8787
-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
@@ -83,7 +83,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz |
8383
cd /var/tmp && rm -fr build
8484

8585
WORKDIR /var/tmp/build
86-
RUN curl -fsSL https://github.com/google/googletest/archive/v1.16.0.tar.gz | \
86+
RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \
8787
tar -xzf - --strip-components=1 && \
8888
cmake \
8989
-DCMAKE_CXX_STANDARD=20 \

ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ENV PATH=/usr/local/bin:${PATH}
3333
# Install googletest, remove the downloaded files and the temporary artifacts
3434
# after a successful build to keep the image smaller (and with fewer layers)
3535
WORKDIR /var/tmp/build
36-
RUN curl -fsSL https://github.com/google/googletest/archive/v1.16.0.tar.gz | \
36+
RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \
3737
tar -xzf - --strip-components=1 && \
3838
cmake \
3939
-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
@@ -71,7 +71,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz |
7171
cd /var/tmp && rm -fr build
7272

7373
WORKDIR /var/tmp/build/googletest
74-
RUN curl -fsSL https://github.com/google/googletest/archive/v1.16.0.tar.gz | \
74+
RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \
7575
tar -xzf - --strip-components=1 && \
7676
cmake \
7777
-DCMAKE_BUILD_TYPE="Release" \

0 commit comments

Comments
 (0)