-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitlab-ci.yml
63 lines (59 loc) · 1.83 KB
/
.gitlab-ci.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
59
60
61
62
63
Code Generation:
trigger:
include: .gitlab-ci.codegen.yml
strategy: depend
variables:
GIT_SUBMODULE_STRATEGY: recursive
ros-noetic:
trigger:
include:
- remote: https://raw.githubusercontent.com/ika-rwth-aachen/docker-ros/main/.gitlab-ci/docker-ros.yml
strategy: depend
variables:
PLATFORM: amd64,arm64
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:
trigger:
include:
- remote: https://raw.githubusercontent.com/ika-rwth-aachen/docker-ros/main/.gitlab-ci/docker-ros.yml
strategy: depend
variables:
PLATFORM: amd64,arm64
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:
trigger:
include:
- remote: https://raw.githubusercontent.com/ika-rwth-aachen/docker-ros/main/.gitlab-ci/docker-ros.yml
strategy: depend
variables:
PLATFORM: amd64,arm64
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:
trigger:
include:
- remote: https://raw.githubusercontent.com/ika-rwth-aachen/docker-ros/main/.gitlab-ci/docker-ros.yml
strategy: depend
variables:
PLATFORM: amd64,arm64
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'