-
Notifications
You must be signed in to change notification settings - Fork 9
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
gazebo11 homebrew CI builds failing with cmake 3.22.0 #573
Comments
This was referenced Nov 29, 2021
Merged
As a workaround, I've added a |
scpeters
added a commit
that referenced
this issue
Nov 30, 2021
gazebo11 needs an older version of cmake on homebrew, but it is keg-only so prepend its bin folder to the PATH. Workaround for #573. Signed-off-by: Steve Peters <[email protected]>
This was referenced Nov 30, 2021
scpeters
added a commit
that referenced
this issue
Nov 30, 2021
gazebo11 needs an older version of cmake on homebrew, but it is keg-only so prepend its bin folder to the PATH. Workaround for #573. Signed-off-by: Steve Peters <[email protected]>
using cmake 3.21.4 fixes it for now |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since the latest version of
tbb
in homebrew-core has removed APIs that gazebo11 uses (gazebosim/gazebo-classic#2867), we have added an older version oftbb@2020_u3
to our homebrew-simulation tap (osrf/homebrew-simulation#1483) along with special handling for environment variables in CI scripts since this formula is not installed to/usr/local
(#465 and #466). Thegazebo-ci-gazebo11-homebrew-amd64
was passing as recently as November 16:The job is now failing with error messages indicating that it is including the header files from the main
tbb
formula installed to/usr/local
.I believe the failure has occurred since cmake 3.22.0 was merged in Homebrew/homebrew-core#89638 based on tests on my local machine with cmake 3.21.0 and 3.22.0.
It's hard to avoid installing the main
tbb
formula sinceogre1.9
uses the one inhomebrew-core
. Some possible solutions:tbb@2020_u3
forkogre1.9
bottle, against our fork oftbb@2020_u3
-I/usr/local/include
compiler flag (brittle solution)The text was updated successfully, but these errors were encountered: