Skip to content

Commit

Permalink
[bazel] upgrade googletest package (ray-project#45449)
Browse files Browse the repository at this point in the history
to version 1.14.0

Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
  • Loading branch information
aslonnie authored May 21, 2024
1 parent ab2b442 commit 41a2b4b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2226,6 +2226,7 @@ ray_cc_test(
deps = [
":redis_store_client",
":store_client_test_lib",
"@boost//:optional",
"@com_google_googletest//:gtest_main",
],
)
Expand Down Expand Up @@ -2253,6 +2254,7 @@ ray_cc_test(
deps = [
":redis_store_client",
":store_client_test_lib",
"@boost//:optional",
"@com_google_googletest//:gtest_main",
],
)
Expand Down
12 changes: 6 additions & 6 deletions bazel/ray_deps_setup.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def ray_deps_setup():
patches = [
"@com_github_ray_project_ray//thirdparty/patches:redis-quiet.patch",
],
workspace_file_content = 'workspace(name = "com_github_antirez_redis")'
workspace_file_content = 'workspace(name = "com_github_antirez_redis")',
)

auto_http_archive(
Expand Down Expand Up @@ -175,8 +175,9 @@ def ray_deps_setup():
)

auto_http_archive(
url = "https://github.com/google/googletest/archive/refs/tags/v1.13.0.tar.gz",
sha256 = "ad7fdba11ea011c1d925b3289cf4af2c66a352e18d4c7264392fead75e919363",
name = "com_google_googletest",
url = "https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz",
sha256 = "8ad598c73ad796e0d8280b082cebd82a630d73e73cd3c70057938a6501bba5d7",
)

auto_http_archive(
Expand Down Expand Up @@ -366,11 +367,10 @@ def ray_deps_setup():
sha256 = "7fbbbc05c112c44e9b406612e6a7a7f4789a6918d7aacefef4c35c105286930c",
)


http_archive(
name = "jemalloc",
urls = ["https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2"],
build_file = "@com_github_ray_project_ray//bazel:BUILD.jemalloc",
build_file = "@com_github_ray_project_ray//bazel:BUILD.jemalloc",
sha256 = "2db82d1e7119df3e71b7640219b6dfe84789bc0537983c3b7ac4f7189aecfeaa",
strip_prefix = "jemalloc-5.3.0",
)
)
1 change: 1 addition & 0 deletions src/ray/gcs/store_client/test/redis_store_client_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

#include "ray/gcs/store_client/redis_store_client.h"

#include <boost/optional/optional_io.hpp>
#include <chrono>

#include "ray/common/test_util.h"
Expand Down

0 comments on commit 41a2b4b

Please sign in to comment.