Files
modelec-marcel-ROS/.github/workflows/ros2-build.yml
Ackimixs c5fc745baf Refactor GitHub Actions workflow for multi-platform builds
Updated the GitHub Actions workflow to include a build job for macOS and Windows, and added a separate Docker build job.
2025-12-08 23:12:35 +01:00

31 lines
601 B
YAML

name: ROS2 Build & Test
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macOS-latest, windows-latest]
steps:
- name: Setup ROS
uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: jazzy
- run: vcs --help
build_docker:
runs-on: ubuntu-latest
container:
image: ubuntu:noble
steps:
- name: Setup ROS
uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: jazzy
- run: vcs --help