build(deps): bump ros-industrial/industrial_ci from d23b9ad2c63bfad638a2b1fe3df34b8df9a2f17b to eb3ea328ff056aa2435d5b3493e7e2929c310f8e #57
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI - Linux - ROS | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - devel | |
| pull_request: | |
| branches: | |
| - master | |
| - devel | |
| jobs: | |
| ROS: | |
| strategy: | |
| matrix: | |
| env: | |
| - {ROS_DISTRO: noetic, BUILDER: catkin_tools} | |
| - {ROS_DISTRO: rolling} | |
| - {ROS_DISTRO: jazzy} | |
| - {ROS_DISTRO: iron} | |
| - {ROS_DISTRO: humble} | |
| env: | |
| CCACHE_DIR: /github/home/.ccache | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.CCACHE_DIR }} | |
| key: ccache-${{ matrix.env.ROS_DISTRO }} | |
| - uses: 'ros-industrial/industrial_ci@eb3ea328ff056aa2435d5b3493e7e2929c310f8e' | |
| env: ${{ matrix.env }} |