Skip to content

Merge pull request #6 from marip8/fix/clang-format-file #1

Merge pull request #6 from marip8/fix/clang-format-file

Merge pull request #6 from marip8/fix/clang-format-file #1

Workflow file for this run

name: Ubuntu
on:
push:
branches:
- master
pull_request:
paths-ignore:
- 'config/**'
- 'docs/**'
- 'launch/**'
- '**.md'
- '*-format'
workflow_dispatch:
jobs:
ci:
name: ${{ matrix.distro }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro: [noetic]
container:
image: ros:${{ matrix.distro }}
env:
DEBIAN_FRONTEND: noninteractive
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: target_ws/src
- name: Build
uses: tesseract-robotics/colcon-action@v6
with:
before-script: source /opt/ros/${{ matrix.distro }}/setup.bash
ccache-enabled: false
rosdep-enabled: true
ros-enabled: true
vcs-file: dependencies.repos
target-path: target_ws/src
target-args: '-DCMAKE_BUILD_TYPE=Debug -DINDUSTRIAL_CALIBRATION_ENABLE_TESTING=ON -DINDUSTRIAL_CALIBRATION_ENABLE_RUN_TESTING=OFF -DINDUSTRIAL_CALIBRATION_ENABLE_CLANG_TIDY=ON'
run-tests: true