-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
grpc: add v1.60.0 #21593
grpc: add v1.60.0 #21593
Conversation
This comment has been minimized.
This comment has been minimized.
@valgur , could you reopen this one, please? |
This comment has been minimized.
This comment has been minimized.
@AndreyMlashkin It requires The current protobuf version is not compatible. |
I tried running this on a pi 3 (armv7 raspbian, gcc/g++ 10.2.1 and it failed to build Command: conan create . 1.60.0@user/stable Output: [ 16%] Linking CXX executable test_package |
There is now a security issue in the current Conan package version, CVS-2023-44487 (a DoS attack, CVSS score 7.5). This is fixed by 1.59.2 or later. This means this issue should be increased in priority. |
@Ahajha @valgur I have tested this with protobuf built with the recipe in PR #21622 (4.25.3), but as @NoneOfUrBusiness12 reported there are linking errors related to missing upb_* calls. It is not clear to me whether it is a gRPC issue or not. |
I'll investigate later today, thanks for proactively checking. |
Currently I believe the link error is a gRPC issue. My working theory is that either it or upb (micro protobuf implementation, vendored since I don't see any other package using it, though maybe that could be changed) switched from one large "upb" library to some smaller ones. I'm not entirely sure why it's using that package though if we supply protobuf. |
i fixed the upb link issues with this diff (NB: this diff is based on merging this recipe with the latest grpc recipe on master):
EDIT: fixed typo in the diff - it turns out the test executable links without upb_json_lib, but the grpc project's pkgconfig files include it in the link, so i assume it's required |
Thanks @amerry! I can fix the merge conflicts and add the patch :) |
Just to highlight that I updated the original diff - the version I originally posted allowed the test to link, but might cause issues for code that uses more of the grpc library (eg: JSON exports). |
Conan v1 pipeline ❌Failure in build 1 (
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability. Conan v2 pipeline ❌
The v2 pipeline failed. Please, review the errors and note this is required for pull requests to be merged. In case this recipe is still not ported to Conan 2.x, please, ping See details:Failure in build 1 (
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability. |
Blocked by #21622 which is currently blocked by an error building the recipe with Conan 2, it appears. |
Requires