share codegen docker images as artifacts between github jobs #142
Workflow file for this run
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
name: docker-ros | |
on: push | |
jobs: | |
ros-noetic: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ika-rwth-aachen/docker-ros@main | |
with: | |
platform: amd64 | |
target: dev,run | |
image-tag: ros | |
base-image: rwthika/ros:noetic | |
command: roslaunch etsi_its_conversion converter.ros1.launch | |
enable-industrial-ci: 'true' | |
enable-recursive-vcs-import: 'false' | |
ros2-humble: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ika-rwth-aachen/docker-ros@main | |
with: | |
platform: amd64 | |
target: dev,run | |
image-tag: ros2 | |
base-image: rwthika/ros2:humble | |
command: ros2 launch etsi_its_conversion converter.launch.py | |
enable-industrial-ci: 'true' | |
enable-recursive-vcs-import: 'false' | |
ros2-iron: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ika-rwth-aachen/docker-ros@main | |
with: | |
platform: amd64 | |
target: dev,run | |
image-tag: ros2-iron | |
base-image: rwthika/ros2:iron | |
command: ros2 launch etsi_its_conversion converter.launch.py | |
enable-industrial-ci: 'true' | |
enable-recursive-vcs-import: 'false' | |
ros2-jazzy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ika-rwth-aachen/docker-ros@main | |
with: | |
platform: amd64 | |
target: dev,run | |
image-tag: ros2-jazzy | |
base-image: ubuntu:24.04 | |
ros-distro: jazzy | |
command: ros2 launch etsi_its_conversion converter.launch.py | |
enable-industrial-ci: 'true' | |
enable-push-as-latest: 'true' | |
enable-recursive-vcs-import: 'false' |