-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (33 loc) · 1.09 KB
/
build.yaml
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
name: build
jobs:
build_job:
strategy:
fail-fast: false
max-parallel: 4
matrix:
ros_distro: [humble, rolling]
name: build_${{ matrix.ros_distro }}
runs-on: ubuntu-22.04
steps:
- uses: jspricke/ros-deb-builder-action@main
with:
DEB_DISTRO: jammy
ROS_DISTRO: ${{ matrix.ros_distro }}
REPOS_FILE: https://raw.githubusercontent.com/ros-planning/moveit2_tutorials/main/moveit2_tutorials.repos
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SQUASH_HISTORY: true
iron:
strategy:
fail-fast: false
max-parallel: 4
name: build_iron
runs-on: ubuntu-22.04
steps:
- uses: jspricke/ros-deb-builder-action@main
with:
DEB_DISTRO: jammy
ROS_DISTRO: iron
REPOS_FILE: https://raw.githubusercontent.com/ros-planning/moveit2_tutorials/main/moveit2_tutorials.repos
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SQUASH_HISTORY: true
SBUILD_CONF: $extra_repositories = ["deb http://packages.ros.org/ros2-testing/ubuntu jammy main"];