james94 commented on PR #1793: URL: https://github.com/apache/nifi-minifi-cpp/pull/1793#issuecomment-2125050170
@szaszm just in case you run into an issue with conan finding the minifi conan profile, you may need to create a default profile for conan first: ~~~bash # create a "default" conan profile, so conan has it on record, before using your own custom profile. Gets created in ~/.conan2/ conan profile detect ~~~ Once you have the default conan profile, then you can try overriding it again with our minifi conan profile: ~~~bash # install conan packages for MiNiFi C++ using conanfile.py invoking Conan # since we created default profile earlier, we can override it with our own minifi profile # make sure path is correct conan install . --build=missing --output-folder=build_conan -pr=$HOME/nifi-minifi-cpp/etc/build/conan/profiles/release-linux ~~~ NOTE: The nice thing about docker environment is we would have already created the default conan profile at the beginning and then later used our specific minifi conan profile. Does the extra `conan profile detect` command help? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
