Correct Documentation #204
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
conan art:build-info createdocumentation and help message indicated thatconan installandconan createare the only Conan commands able to produce the Conan graph json that can be consumed for producing a JFrog Build Info. This information is inaccurate/outdated and limiting. According to Conan's documentation (at the time of writing), additional commands that work for this includeconan graph infoandconan export-pkg.conan export-pkgis the more important of the two since it produces the Conan graph JSON similar toconan createthat includes both dependencies and produced Conan package. This means that instead of requiringconan createto build the package from beginning to end, the steps could be broken up intoconan install,<build>, andconan export-pkg. The latter approach aligns with Conan's documentation that recommends calling the build tools to build/compile your code directly instead of using the build() method in your Conanfile.py.