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 9690af3 commit b29596fCopy full SHA for b29596f
.github/workflows/ci-linux-ros.yml
@@ -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
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
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