Skip to content

CMake cleanup & code hardening (#2) #6

CMake cleanup & code hardening (#2)

CMake cleanup & code hardening (#2) #6

Workflow file for this run

name: Ubuntu 22.04 Iron Build
on:
pull_request:
push:
branches:
- iron
jobs:
Build:
runs-on: ubuntu-latest
container:
image: osrf/ros:iron-desktop-full-jammy
steps:
- name: Update
run: apt update
- name: Install PIP
run: apt install -y python3-pip lcov
- name: Install colcon tools
run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result
- name: Checkout
uses: actions/checkout@v2
- name: Run Tests
uses: ros-tooling/[email protected]
with:
target-ros2-distro: iron
- name: Upload Logs
uses: actions/upload-artifact@v1
with:
name: colcon-logs
path: ros_ws/log
if: always()