-
Notifications
You must be signed in to change notification settings - Fork 31
53 lines (51 loc) · 1.74 KB
/
ros-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
name: humble-devel
# Controls when the action will run. Triggers the workflow on push or pull request
on:
push:
branches: [ humble-devel ]
pull_request:
branches: [ humble-devel ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
ros2-ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ros_distribution:
# - foxy
# - galactic
- humble
# - rolling
include:
# # Foxy Fitzroy (June 2020 - May 2023)
# - docker_image: rostooling/setup-ros-docker:ubuntu-focal-ros-foxy-ros-base-latest
# ros_distribution: foxy
# ros_version: 2
# # Galactic Geochelone (May 2021)
# - docker_image: rostooling/setup-ros-docker:ubuntu-focal-ros-galactic-ros-base-latest
# ros_distribution: galactic
# ros_version: 2
# Humble Hawksbill (May 2027)
- docker_image: rostooling/setup-ros-docker:ubuntu-jammy-ros-humble-ros-base-latest
ros_distribution: humble
ros_version: 2
# # Rolling
# - docker_image: rostooling/setup-ros-docker:ubuntu-jammy-ros-rolling-ros-base-latest
# ros_distribution: rolling
# ros_version: 2
container:
image: ${{ matrix.docker_image }}
steps:
- name: Setup directories
run: mkdir -p ros_ws/src
- name: checkout
uses: actions/checkout@v2
with:
path: ros_ws/src
- name: Build and Test
uses: ros-tooling/[email protected]
with:
package-name: turtlebot3_manipulation
target-ros2-distro: ${{ matrix.ros_distribution }}
vcs-repo-file-url: ""