File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -27,16 +27,16 @@ jobs:
2727 run : |
2828 if ${ROLLING_VAR} == true; then
2929 echo "::set-output name=distro::rolling"
30- echo "::set-output name=linuxos::ubuntu-24.04 "
30+ echo "::set-output name=linuxos::ubuntu:noble "
3131 elif ${JAZZY_VAR} == true; then
3232 echo "::set-output name=distro::jazzy"
33- echo "::set-output name=linuxos::ubuntu-24.04 "
33+ echo "::set-output name=linuxos::ubuntu:noble "
3434 elif ${IRON_VAR} == true; then
3535 echo "::set-output name=distro::iron"
36- echo "::set-output name=linuxos::ubuntu-22.04 "
36+ echo "::set-output name=linuxos::ubuntu:jammy "
3737 elif ${HUMBLE_VAR} == true; then
3838 echo "::set-output name=distro::humble"
39- echo "::set-output name=linuxos::ubuntu-22.04 "
39+ echo "::set-output name=linuxos::ubuntu:jammy "
4040 else
4141 echo "Unable to map branch name to ROS distro, using ROLLING as default"
4242 echo "::set-output name=distro::rolling"
Original file line number Diff line number Diff line change 2424
2525 build :
2626 needs : identify-ros-distro
27- runs-on : ${{ needs.identify-ros-distro.outputs.linuxos }}
27+ runs-on : ubuntu-latest
2828 container :
29- image : osrf/ros: ${{ needs.identify-ros-distro.outputs.distro }}-desktop
29+ image : ${{ needs.identify-ros-distro.outputs.linuxos }}
3030 strategy :
3131 fail-fast : false
3232 matrix :
3939
4040 - name : Setup ROS2
4141 uses :
ros-tooling/[email protected] 42+ with :
43+ required-ros-distributions : ${{ needs.identify-ros-distro.outputs.distro }}
4244
4345 - uses : actions/checkout@v4
4446
You can’t perform that action at this time.
0 commit comments