Integrate UVMS demonstrations and deprecate stale localization #684
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: Check Implementation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
env: | |
CLANG_TIDY: true | |
jobs: | |
test-implementation: | |
name: Test Implementation | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
env: | |
- IMAGE: rolling-ci | |
ROS_DISTRO: rolling | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Log into registry | |
uses: docker/login-action@v3.3.0 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run ROS Industrial CI | |
uses: ros-industrial/industrial_ci@master | |
env: | |
DOCKER_IMAGE: ghcr.io/robotic-decision-making-lab/blue:${{ matrix.env.IMAGE }} | |
CXXFLAGS: >- | |
-Wall -Wextra -Wpedantic -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls | |
CC: ${{ env.CLANG_TIDY && 'clang' }} | |
CXX: ${{ env.CLANG_TIDY && 'clang++' }} |