-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
feat(docker): add localization/map
launch files to autoware:universe-localization-mapping
images
#5586
Open
youtalk
wants to merge
2
commits into
main
Choose a base branch
from
feat/lm-launch
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+4
−0
Open
feat(docker): add localization/map
launch files to autoware:universe-localization-mapping
images
#5586
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
tier4_localization_launch depends on the following packages from other folders:
Should we copy these packages as well?
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.
If
exec_depend
is properly written, thehealth-check
should fail when there are missing dependency packages, but it is succeeding.https://github.com/autowarefoundation/autoware/actions/runs/12413593055/job/34655835144?pr=5586
It seems necessary to actually create the image and test whether it launches with
ros2 launch
.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.
I created container images with all PRs merged in the forked repository.
youtalk#158
https://hub.docker.com/repository/docker/youtalk/autoware/tags?name=20241220
ros2 launch
has started, but I don’t know what parameters to provide. @mitsudome-r Could you check the launch validity instead of me?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 rosdep script is actually outputting error messages, but the build passes because they are just exec depends.
We might need to report it as a CI error when ever we get error messages out of the scripts.
https://github.com/autowarefoundation/autoware/actions/runs/12413593055/job/34655835144?pr=5586#step:5:1472
At the moment, the launch file is expected to be launched via autoware.launch.xml so it requires lengthy arguments. I will write them down here. Give me few minutes.
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.
In order to launch you need to give arguments and parameters to the launch file:
Download localization_config.zip
Mount the extracted localization to the docker container e.g.,
docker run -it -v $HOME/Downloads/localization_config:=/localization_config youtalk/autoware:universe-localization-mapping-20241220-amd64
Run the following commands:
If we are able to set default parameters for the launch files, then I think we could simplify the command, but that can be done as a separate PR.
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.
When I launch with
ghcr.io/autowarefoundation/autoware:universe-devel
, it works.However, when I try to run with
youtalk/autoware:universe-localization-mapping-20241220-amd64
, it fails with the following error: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.
Thank you very much for your detail explanation. I understood. I will fix them.