-
Notifications
You must be signed in to change notification settings - Fork 6
58 lines (52 loc) · 1.61 KB
/
docker-ros.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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-noetic
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-humble
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
enable-push-as-latest: 'true'
base-image: rwthika/ros2:jazzy
command: ros2 launch etsi_its_conversion converter.launch.py
enable-industrial-ci: 'true'
enable-recursive-vcs-import: 'false'