Skip to content

Commit b29596f

Browse files
committed
ci: add ROS
1 parent 9690af3 commit b29596f

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci-linux-ros.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI - Linux - ROS
2+
on: [push, pull_request]
3+
4+
jobs:
5+
CI:
6+
strategy:
7+
matrix:
8+
env:
9+
- {ROS_DISTRO: noetic, BUILDER: catkin_tools}
10+
- {ROS_DISTRO: rolling}
11+
- {ROS_DISTRO: jazzy}
12+
- {ROS_DISTRO: iron}
13+
- {ROS_DISTRO: humble}
14+
env:
15+
CCACHE_DIR: /github/home/.ccache
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
with:
20+
submodules: recursive
21+
- uses: actions/cache@v4
22+
with:
23+
path: ${{ env.CCACHE_DIR }}
24+
key: ccache-${{ matrix.env.ROS_DISTRO }}
25+
- uses: 'ros-industrial/industrial_ci@d23b9ad2c63bfad638a2b1fe3df34b8df9a2f17b'
26+
env: ${{ matrix.env }}

0 commit comments

Comments
 (0)