-
Notifications
You must be signed in to change notification settings - Fork 993
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
[question] What is the difference between test_requires() or build_requires(, force_host_context=True) and requires with "private" flag? #13956
Comments
Hi @SzBosch Thanks for your queston. Yes, both cases they are not transitive and they are in the host context. Another important difference is that |
Thank You for the answer. One detail is unclear to me: When a require is private what is the use-case/advantage of being "always evaluated"? |
Not really a use-case or advantage, but it could be confusing for 1.X users: "why I have Conan 2.0 changes these rules, and the graph is always complete, containing all dependencies (recipes, not necessarily binaries) |
That means: When looking at the GTest example in the last comment and using Conan 2. at least the GTest recipe would need to be promoted alaways to the releases repository whereas in Conan 1.x with Gtest as build requires it is not required. Is my understanding correct? |
Yes, the full graph of recipes need to be promoted. The binaries are not necessary, but the recipes are needed, as the full graph will always be computed when using |
I guess this is true also for transitive tool dependencies. Means when a package A has tool_requires and test_requires which itself have requires, which for each can have further requires, tool_requires and test_requires and I want to promote the package A, I need to expose my whole toolchain (recipes) to my users/customers (which use "conan install pkgA"). This sounds for me like drawback with Conan 2 compared to Conan 1. |
Yes, it is true, the recipes need to be available to resolve a dependency graph.
You can find the rationale, design, problems that it is solving and the discussion with the Tribe in conan-io/tribe#20, and see the comments and the voting there too. The amount of problems and issues of not computing the complete graph in Conan 1.X was huge. One of the top causes of issues and problems, user confusions, etc. The trade-off was making some recipes visible to external customers (only the recipes), which in practice didn't seem a blocker for the vast majority of users. If hiding a few python files to those customers is completely mandatory, then releasing to them the exact same dependency graph used for internal development is probably not the best approach. For achieving almost absolute isolation of the upstream dependencies for secondary release flows (like releasing packages to an external customer, outside of the main development flow), the "repackage" concept will try to be implemented in the 2.X roadmap, this is the ticket that you might want to follow: #13171 |
To follow up on this:
def build_requirements(self):
if self.conf.get("tools.build:skip_test", check_type=bool):
self.test_requires("catch2/...")
self.test_requires("other/...") And then you can fully drop the dependencies and they will not even exist in your lockfile, promotions or graphs. The same concept can be applied to your The "vendor" feature has been merged in #13171 for next Conan 2.4. This feature can also provide a complete dependency graph isolation in cases it could make sense. It doesn't look like this would be exactly about this thread, but just in case. I am closing this ticket as responded, but please re-open or create a new one if there is any further question or comment. Thanks! |
Actually, I think at the light of the |
I am exploring in #17117 the possibility to completely skip |
Hi all This was closed by #17117, that added new |
What is your question?
What is the difference between test_requires() or build_requires(, force_host_context=True) and requires with "private" flag?
This refers to the documentation:
https://docs.conan.io/1/devtools/build_requires.html#build-and-host-contexts
https://docs.conan.io/1/reference/conanfile/attributes.html#requires
e.g. what is the difference between:
and
?
I assume in both cases it does not lead to transitive dependencies and they are in the host context, right?
Have you read the CONTRIBUTING guide?
The text was updated successfully, but these errors were encountered: