Skip to content

Commit ce851c2

Browse files
committed
Do not build the tracing shim.
1 parent 59d42af commit ce851c2

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

MODULE.bazel

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,20 @@ bazel_dep(name = "curl", version = "8.8.0")
1414
bazel_dep(name = "grpc", version = "1.69.0", repo_name = "com_github_grpc_grpc")
1515
bazel_dep(name = "nlohmann_json", version = "3.11.3", repo_name = "github_nlohmann_json")
1616
bazel_dep(name = "opentelemetry-proto", version = "1.5.0", repo_name = "com_github_opentelemetry_proto")
17-
bazel_dep(name = "opentracing-cpp", version = "1.6.0", repo_name = "com_github_opentracing")
17+
18+
# In opentracing-cpp:
19+
# - file BUILD.bazel contains a rule generate_version_h, which invokes ... CMake.
20+
# - file CMakeLists.txt contains
21+
# cmake_minimum_required(VERSION 3.1)
22+
# As a result, a BAZEL build requires CMake.
23+
# As of 2025-04-01, CMake 4.0.0 is installed in github runners
24+
# for Ubuntu 22 and Ubuntu 24.
25+
# CMake 4.0.0 no longer supports cmake_minimum_required < 3.5
26+
#
27+
# Removing opentracing-cpp from the build.
28+
#
29+
# bazel_dep(name = "opentracing-cpp", version = "1.6.0", repo_name = "com_github_opentracing")
30+
1831
bazel_dep(name = "platforms", version = "0.0.8")
1932
bazel_dep(name = "prometheus-cpp", version = "1.3.0", repo_name = "com_github_jupp0r_prometheus_cpp")
2033
bazel_dep(name = "protobuf", version = "29.0", repo_name = "com_google_protobuf")

0 commit comments

Comments
 (0)