-
Notifications
You must be signed in to change notification settings - Fork 64
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
Update conanfile #699
Update conanfile #699
Conversation
bdd4e5e
to
fbcf614
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes look good, but for some reason, when I run pytest
on src
, Vizard is called multiple times? I don't know what's going on here.
Thanks for the feedback @joaogvcarneiro , I'll re-run this on my side as well. If you have BSK compiled with opNav set to True, then the opNav scenarios do get called one by one. That might be what you are seeing. It launches the app about 8-10 times. |
Just re-built this branch, ran all test and built documentation. Yes, if you have the |
Previously <ifstream> was being included by happenstance. Instead, includes used in the file should all be explicit.
Checking the return code will ensure that if the subprocess fails then the conanfile fails. This is correct and as a nice side effect it ensures that the github action step fails when the build fails. Additionally, os.system is not the recommend method to run a subprocess.
fbcf614
to
f53e010
Compare
Description
This original update is lifted from the LASP fork of Basilisk and was authored by @patkenneally. The branch
added release notes and documentation updates.
Here the Eigen library is updated to 3.4.0 and OpenCV to 4.5.5.
Verification
A clean build was done with a fresh
.conan
directory and Basilisk built without issues.All unit tests passed.
Documentation
Added release notes and updated the camera module RST documentation to point to the OpenCV 4.5.5
documentation.
Future work
None