Separate web_video_server into a component and an executable (#168) #104
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 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches-ignore: | |
| - ros1* | |
| pull_request: | |
| branches-ignore: | |
| - ros1* | |
| jobs: | |
| industrial_ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ROS_DISTRO: [humble, iron, jazzy, rolling] | |
| ROS_REPO: [testing, main] | |
| env: | |
| ROS_DISTRO: ${{ matrix.ROS_DISTRO }} | |
| ROS_REPO: ${{ matrix.ROS_REPO }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Source tests | |
| uses: "ros-industrial/industrial_ci@master" |