Fixed some CMake issues #157
Workflow file for this run
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: ROS2 Jazzy | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| # Set up ROS | |
| - uses: ros-tooling/[email protected] | |
| with: | |
| required-ros-distributions: jazzy | |
| # Install missing Python packages | |
| - name: Install ament Python packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y python3-ament-package python3-colcon-common-extensions | |
| # Run ROS CI | |
| - uses: ros-tooling/[email protected] | |
| with: | |
| package-name: | | |
| cloudini_lib | |
| cloudini_ros | |
| target-ros2-distro: jazzy | |
| skip-tests: true |