Merge pull request #162 from Fields2Cover/modify-order-ortools-find-p… #1
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: Build for Ros2 | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
noble_rolling: | |
runs-on: ubuntu-24.04 | |
env: | |
ROS_DISTRO: ${{ matrix.ros_distro }} | |
container: | |
image: rostooling/setup-ros-docker:ubuntu-noble-ros-rolling-ros-base-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ros_distro: [rolling] | |
steps: | |
- name: checkout source | |
uses: actions/checkout@v4 | |
- name: Build and run tests | |
id: action-ros-ci | |
uses: ros-tooling/[email protected] | |
with: | |
package-name: "fields2cover" | |
target-ros2-distro: ${{ matrix.ros_distro }} | |
vcs-repo-file-url: "${{ github.workspace }}/.github/deps.repos" | |
colcon-defaults: | | |
{ | |
"test": { | |
"packages-select": [ | |
"fields2cover" | |
] | |
} | |
} |