This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
Split blue_on_laptop_nvidia to build_sim and blue_sim_nvidia #7
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
env: | |
CLANG_TIDY: true | |
jobs: | |
test: | |
name: Test Implementation | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
env: | |
- IMAGE: noetic-ci | |
ROS_DISTRO: noetic | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Log into registry | |
uses: docker/[email protected] | |
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/ros-template:${{ 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++' }} |