-
Notifications
You must be signed in to change notification settings - Fork 469
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
3267 cmake googletest #3290
base: main
Are you sure you want to change the base?
3267 cmake googletest #3290
Conversation
Using the precompiled shared libraries is not recommended, as for opentelemetry-cpp, some tests end up failing. Fixes: 3267
It is need to update the git submdule, and move the code to install the opentelemetry-cpp build dependencies to the ci/setup_ci_environment.sh script.
✅ Deploy Preview for opentelemetry-cpp-api-docs canceled.
|
@santiagorr This PR is draft, and CI is failing. Are you still working on it ? |
marcalff left a comment (open-telemetry/opentelemetry-cpp#3290)
@santiagorr This PR is draft, and CI is failing. Are you still working on it ?
Yeah, I am aware CI is failing. I still plan to complete this work, but
it is currently stalled.
Thanks for the ping.
|
endif() | ||
elseif(WIN32) | ||
|
||
if(WIN32) |
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.
The general approach looks good - 1) try to find an installed gtest cmake package, 2) build the submodule for gtest if no package is found.
We should try to find the gtest package first on all platforms though - not just windows. The cmake install github workflow has jobs that install gtest with conan on Ubuntu and MacOS and we should ensure those packages are found instead of building the submodule.
Fixes #3267
Changes
Build googletest from the source code along with opentelemetry-cpp, as it is recommended by googletest. Relying on precompiled shared libraries yields to some errors during testing. Using ExternalProject_add() (in favor of alternatives as FetchContent) since googletest is found as a third-party submodule, and it is easier to "integrate" in distros like debian, that ship googletest source code as a package.
I am not able to test how this builds on windows.
For significant contributions please make sure you have completed the following items:
CHANGELOG.md
updated for non-trivial changes -> I think these are trivial changes, but I can describe them in CHANGELOG.md, if you think that helps.