Skip to content

Commit 07f1420

Browse files
committed
set up docker-ros for ros and ros2
1 parent c1c42ae commit 07f1420

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

.gitlab-ci.ros.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
include:
2+
- remote: https://raw.githubusercontent.com/ika-rwth-aachen/docker-ros/main/.gitlab-ci/docker-ros.yml
3+
4+
variables:
5+
IMAGE_TAG: ros
6+
BASE_IMAGE: rwthika/ros:latest
7+
COMMAND: roslaunch mqtt_client standalone.launch
8+
PLATFORM: amd64,arm64
9+
TARGET: dev,run
10+
ENABLE_INDUSTRIAL_CI: 'true'

.gitlab-ci.ros2.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
include:
2+
- remote: https://raw.githubusercontent.com/ika-rwth-aachen/docker-ros/main/.gitlab-ci/docker-ros.yml
3+
4+
variables:
5+
IMAGE_TAG: ros2
6+
BASE_IMAGE: rwthika/ros:latest
7+
COMMAND: ros2 launch mqtt_client standalone.launch.ros2.xml
8+
PLATFORM: amd64,arm64
9+
TARGET: dev,run
10+
ENABLE_INDUSTRIAL_CI: 'true'
11+
ENABLE_PUSH_AS_LATEST: 'true'

.gitlab-ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
include:
2-
- remote: https://raw.githubusercontent.com/ika-rwth-aachen/docker-ros/main/.gitlab-ci/docker-ros.yml
1+
ros:
2+
trigger:
3+
include: .gitlab-ci.ros.yml
4+
strategy: depend
35

4-
variables:
5-
BASE_IMAGE: rwthika/ros:noetic
6-
COMMAND: roslaunch mqtt_client standalone.launch
7-
PLATFORM: amd64,arm64
8-
TARGET: dev,run
9-
ENABLE_INDUSTRIAL_CI: 'true'
6+
ros2:
7+
trigger:
8+
include: .gitlab-ci.ros2.yml
9+
strategy: depend

0 commit comments

Comments
 (0)