-
Notifications
You must be signed in to change notification settings - Fork 28
41 lines (36 loc) · 1.03 KB
/
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
# this file is written based on https://github.com/tork-a/ros-prerelease-job-action/tree/main
name: build
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- build: melodic_amd64
ROS_DISTRO_NAME : melodic
ARCH : amd64
# - build: melodic_armhf
# ROS_DISTRO_NAME : melodic
# ARCH : armhf
# - build: melodic_arm64
# ROS_DISTRO_NAME : melodic
# ARCH : arm64
- build: noetic_amd64
ROS_DISTRO_NAME : noetic
ARCH : amd64
# - build: noetic_arm64
# ROS_DISTRO_NAME : noetic
# ARCH : arm64
name: ${{ matrix.build }}
steps:
- name: Chcekout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Run prerelease test
uses: tork-a/ros-prerelease-job-action@main
with:
ros_distro_name: ${{matrix.ROS_DISTRO_NAME}}
arch: ${{matrix.ARCH}}