Skip to content

Commit

Permalink
Update gtest version
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 570661615
  • Loading branch information
rstz authored and copybara-github committed Oct 4, 2023
1 parent b3b0ca2 commit 7980b0b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions third_party/gtest/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

def deps():
# Version 1.14.0, 2023-08-02
GOOGLETEST_VERSION = "1.14.0"
GOOGLETEST_SHA = "8ad598c73ad796e0d8280b082cebd82a630d73e73cd3c70057938a6501bba5d7"
http_archive(
name = "com_google_googletest",
urls = ["https://github.com/google/googletest/archive/011959aafddcd30611003de96cfd8d7a7685c700.zip"],
strip_prefix = "googletest-011959aafddcd30611003de96cfd8d7a7685c700",
sha256 = "6a5d7d63cd6e0ad2a7130471105a3b83799a7a2b14ef7ec8d742b54f01a4833c",
urls = ["https://github.com/google/googletest/archive/refs/tags/v{version}.tar.gz".format(version = GOOGLETEST_VERSION)],
strip_prefix = "googletest-{version}".format(version = GOOGLETEST_VERSION),
sha256 = GOOGLETEST_SHA,
)

0 comments on commit 7980b0b

Please sign in to comment.