-
Notifications
You must be signed in to change notification settings - Fork 423
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use custom abseil with bazel #1172
Changes from 3 commits
47b7cd3
d66a29b
3a81576
e429e22
a95ac25
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,17 @@ def opentelemetry_cpp_deps(): | |
], | ||
) | ||
|
||
# Load abseil dependency(optional) | ||
maybe( | ||
http_archive, | ||
name = "com_google_absl", | ||
sha256 = "59b862f50e710277f8ede96f083a5bb8d7c9595376146838b9580be90374ee1f", | ||
strip_prefix = "abseil-cpp-20210324.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. abseil version doesn't match with what we use in CI: 20210324.0 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. The version of internal abseil in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
One of the concerns I see with the periodic upgrade of the internal |
||
urls = [ | ||
"https://github.com/abseil/abseil-cpp/archive/20210324.2.tar.gz", | ||
], | ||
) | ||
|
||
# Load gRPC dependency | ||
maybe( | ||
http_archive, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit - do we need to add a dependency for absl::span?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@com_google_absl//absl/types:any
and@com_google_absl//absl/types:span
are removed. The failed jobs seem not be the problem of this PR.