Added target wrench subscription #4
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
| # This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git). | |
| # For troubleshooting, see README (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst) | |
| name: ROS2 humble - CI | |
| on: [push, pull_request] | |
| jobs: | |
| industrial_ci: | |
| name: ROS ${{ matrix.ROS_DISTRO }} (${{ matrix.ROS_REPO }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ROS_DISTRO: [humble] | |
| ROS_REPO: [main] | |
| env: | |
| CCACHE_DIR: "${{ github.workspace }}/.ccache" # directory for ccache (and how we enable ccache in industrial_ci) | |
| steps: | |
| - uses: actions/checkout@v4 # clone target repository | |
| - uses: actions/cache@v4 # fetch/store the directory used by ccache before/after the ci run | |
| with: | |
| path: ${{ env.CCACHE_DIR }} | |
| key: ccache-${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}-${{github.run_id}} | |
| restore-keys: | | |
| ccache-${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}- | |
| - uses: 'ros-industrial/industrial_ci@master' | |
| env: | |
| ROS_DISTRO: ${{ matrix.ROS_DISTRO }} | |
| ROS_REPO: ${{ matrix.ROS_REPO }} |