We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f513dea commit 3feb914Copy full SHA for 3feb914
.github/workflows/build.yml
@@ -3,16 +3,18 @@ name: Build
3
on: push
4
5
jobs:
6
- build:
7
- runs-on: ubuntu-20.04
+ industrial_ci:
+ name: ROS ${{ matrix.ROS_DISTRO }} (${{ matrix.ROS_REPO }})
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ ROS_DISTRO:
12
+ - noetic
13
+ ROS_REPO:
14
+ - testing
15
+ - main
16
steps:
- - name: Checkout repository
- uses: actions/checkout@v3
- - name: Setup catkin
- uses: betwo/github-setup-catkin@master
17
+ - uses: actions/checkout@v2
18
+ - uses: ros-industrial/industrial_ci@master
19
with:
- ros-version: noetic
- build-tool: catkin_tools
- workspace: $GITHUB_WORKSPACE
- - name: Build ROS workspace
- run: catkin build
20
+ config: ${{ toJSON(matrix) }}
0 commit comments