File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git).
2+ # For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst)
3+
4+ name : ROS-CI
5+
6+ # This determines when this workflow is run
7+ on : [push, pull_request] # on all pushes and PRs
8+
9+ jobs :
10+ CI :
11+ strategy :
12+ matrix :
13+ env :
14+ - {ROS_DISTRO: melodic}
15+ - {ROS_DISTRO: noetic}
16+ env :
17+ CCACHE_DIR : /github/home/.ccache # Enable ccache
18+ BUILDER : catkin_tools
19+ runs-on : ubuntu-latest
20+ steps :
21+ - uses : actions/checkout@v2
22+ with :
23+ submodules : recursive
24+ # This step will fetch/store the directory used by ccache before/after the ci run
25+ - uses : actions/cache@v2
26+ with :
27+ path : ${{ env.CCACHE_DIR }}
28+ key : ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
29+ # Run industrial_ci
30+ - uses : ' ros-industrial/industrial_ci@master'
31+ env : ${{ matrix.env }}
You can’t perform that action at this time.
0 commit comments