-
Notifications
You must be signed in to change notification settings - Fork 129
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
catkin_tools_prebuild:cmake step fails if the Travis CI language is "cpp" #36
Comments
Thanks for the report! Travis CI does special thing with https://docs.travis-ci.com/user/languages/cpp
|
If I remember it correctly the "language: cpp" pulls in a wrong/incompatible python version.
Can't you just install another compiler and set the CC/CXX environment variables? |
I can, although being able to use the |
This should be resolved because all command are run in docker now. |
I have a few repositories that I want to build with both clang and gcc. In order for the
compiler:
value in the .travis.yml file to work, thelanguage:
needs to be set tocpp
rather thangeneric
; otherwise it will only compile using gcc. However, If I make that change, the build fails almost immediately. When cmake is running for the first package, it prints out this error:If I set the language back to generic, the error goes away. In the build log, it does look like the python-catkin-pkg package was installed, so I'm not sure why cmake can't find it. Here's a complete example of a build log: https://travis-ci.org/pjreed/marti_common/jobs/125634383
The text was updated successfully, but these errors were encountered: