Merge pull request #125 from 321Aurora/imagetransmission #534
This file contains 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 | |
on: [ push, pull_request ] | |
jobs: | |
industrial_ci: | |
strategy: | |
matrix: | |
env: | |
- { ROS_DISTRO: noetic, ROS_REPO: testing } | |
- { ROS_DISTRO: noetic, ROS_REPO: main } | |
env: | |
CCACHE_DIR: /github/home/.ccache # Directory for ccache (and how we enable ccache in industrial_ci) | |
UPSTREAM_WORKSPACE: 'github:rm-controls/rm_control#master' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: ${{ env.CCACHE_DIR }} | |
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }} | |
# Run industrial_ci | |
- uses: 'ros-industrial/industrial_ci@master' | |
env: | |
ROS_DISTRO: ${{ matrix.env.ROS_DISTRO }} | |
ROS_REPO: ${{ matrix.env.ROS_REPO }} |