-
Notifications
You must be signed in to change notification settings - Fork 2
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
Migrate Package Specific Dependencies from Image to package.xml #244
Migrate Package Specific Dependencies from Image to package.xml #244
Conversation
Colcon test failed because pyproj is not installed when the tests run. Maybe if we also specify pyproj as a test dependency in package.xml then it will work. |
Setup is run in the tests run:
I think it is failing because it is pulling the main branch of local pathfinding. You can test out your branch by changing this line: sailbot_workspace/src/polaris.repos Line 48 in b602a20
|
Hm I tried this but its still not working. Running the setup task manually and then the test task works. |
It timed out, which is a known bug: #231 After rerunning it passes |
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.
Can merge your local pathfinding pr in, change the branch back to main here, then merge this pr in
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.
Actually let's keep this open for now and use it to clean up our dependencies across the software team. I'll add a to do list to this PR
Sounds good, and I'll make separate PRs in each repo to update the package.xml files one by one. |
…om-image-to-packages-242' of https://github.com/UBCSailbot/sailbot_workspace into user/SPDonaghy/migrate-package-specific-dependencies-from-image-to-packages-242
As far as I can tell what's left is syncing with NET/diagnostics about what dependencies can be migrated to their repo |
So on this branch, when you rebuild and then run the test task, it doesn't error out for you? I'm getting module not found for scipy from controller and pyproj from local_path |
…ndencies-from-image-to-packages-242
…ndencies-from-image-to-packages-242
Description
Some Python dependencies needed for the local pathfinding ROS package were moved from
base-dev.Dockerfile
topackage.xml
in the local_pathfinding repositoryVerification
base-dev.Dockerfile
, I ran the build images workflow and set the new image tag in the main Dockerfile.base-dev.Dockerfile
were installed in the workspace but the dependencies that were moved topackage.xml
were not.Resources
To Do