-
Notifications
You must be signed in to change notification settings - Fork 54
Migrate to Kilted #94
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
Conversation
d0edf59
to
da313f2
Compare
I don't get why it is failing, and there seems to be no |
It looks like nav2_util wasn't installed on the system, so it couldn't compile.
You're using a Rolling distro which doesn't have Nav2 binaries. If you want to update for Kilted, you should use a Kilted container which will be able to use rosdep to install Kilted Nav2 packages. |
I also just pushed a Kilted branch so we can also backport this into after merge in. |
I tried kilted and got this error:
I will try it again now Edit: https://github.com/open-navigation/opennav_coverage/actions/runs/16591772590/job/46928948426?pr=94 |
.github/workflows/test.yml
Outdated
@@ -16,7 +16,7 @@ jobs: | |||
strategy: | |||
fail-fast: false | |||
matrix: | |||
ros_distro: [jazzy] | |||
ros_distro: [rolling] |
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.
Could do jazzy, kilted
to run both
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.
done
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 test on Jazzy seems to be failing. Maybe just kilted
is enough?
.github/workflows/test.yml
Outdated
@@ -12,11 +12,11 @@ jobs: | |||
ROS_DISTRO: ${{ matrix.ros_distro }} | |||
RMW_IMPLEMENTATION: rmw_cyclonedds_cpp | |||
container: | |||
image: rostooling/setup-ros-docker:ubuntu-noble-latest | |||
image: rostooling/setup-ros-docker:ubuntu-noble-ros-kilted-desktop-latest |
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.
This image doesn't appear to exist https://github.com/orgs/ros-tooling/packages?tab=packages&q=kited
Can you file a ticket on rostooling/setup-ros-docker
with that 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.
You have a typo in the search.
I found these 2 packages:
setup-ros-docker-ubuntu-noble-ros-kilted-desktop
setup-ros-docker-ubuntu-noble-ros-kilted-ros-base
https://github.com/orgs/ros-tooling/packages?packages&q=kilted
but it doesn't seem to help.
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 opened a ticket: ros-tooling/setup-ros-docker#90
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.
🤦
Lets see what they say!
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.
It's here: https://github.com/ros-tooling/setup-ros-docker/pkgs/container/setup-ros-docker%2Fsetup-ros-docker-ubuntu-noble-ros-kilted-desktop. Try:
image: rostooling/setup-ros-docker:ubuntu-noble-ros-kilted-desktop-latest | |
image: ghcr.io/ros-tooling/setup-ros-docker/setup-ros-docker-ubuntu-noble-ros-kilted-desktop |
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.
Note that images still get uploaded to Docker Hub, but that might eventually change, so I'd recommend switching to ghcr.io.
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.
Thanks, I needed to add :master
at the end, but seems to be working now
e5e58f1
to
1b536b8
Compare
@adivardi remove Jazzy now if this is only the kilted branch. That should let this pass and we can merge! |
.github/workflows/lint.yml
Outdated
@@ -7,7 +7,7 @@ jobs: | |||
name: ament_${{ matrix.linter }} | |||
runs-on: ubuntu-latest | |||
container: | |||
image: rostooling/setup-ros-docker:ubuntu-noble-ros-jazzy-ros-base-latest | |||
image: ghcr.io/ros-tooling/setup-ros-docker/setup-ros-docker-ubuntu-noble-ros-kilted-desktop:master |
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.
Is the full desktop really necessary?
.github/workflows/test.yml
Outdated
@@ -12,18 +12,18 @@ jobs: | |||
ROS_DISTRO: ${{ matrix.ros_distro }} | |||
RMW_IMPLEMENTATION: rmw_cyclonedds_cpp | |||
container: | |||
image: rostooling/setup-ros-docker:ubuntu-noble-latest | |||
image: ghcr.io/ros-tooling/setup-ros-docker/setup-ros-docker-ubuntu-noble-ros-kilted-desktop:master |
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.
Ditto
all done now |
Migrate the code to Kilted