Updated CI to lyrical #75
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: Test geometry_tutorials | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - ros2 | |
| jobs: | |
| build_and_test_source_lyrical: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/ros-tooling/setup-ros-docker/setup-ros-docker-ubuntu-noble-testing | |
| steps: | |
| - name: Build and run tests | |
| id: action-ros-ci | |
| uses: ros-tooling/action-ros-ci@v0.4 | |
| with: | |
| package-name: | | |
| turtle_tf2_py | |
| turtle_tf2_cpp | |
| target-ros2-distro: lyrical | |
| vcs-repo-file-url: https://raw.githubusercontent.com/ros2/ros2/lyrical/ros2.repos | |
| colcon-defaults: | | |
| { | |
| "build": { | |
| "cmake-args": [ | |
| "-DCMAKE_CXX_FLAGS=\"-Werror\"" | |
| ] | |
| }, | |
| "test": { | |
| "ctest-args": ["-LE", "xfail"], | |
| "pytest-args": ["-m", "not xfail"] | |
| } | |
| } | |
| build_and_test_binaries_lyrical: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/ros-tooling/setup-ros-docker/setup-ros-docker-ubuntu-noble-testing | |
| steps: | |
| - name: Build and run tests | |
| id: action-ros-ci | |
| uses: ros-tooling/action-ros-ci@v0.4 | |
| with: | |
| package-name: | | |
| turtle_tf2_py | |
| turtle_tf2_cpp | |
| target-ros2-distro: lyrical | |
| colcon-defaults: | | |
| { | |
| "build": { | |
| "cmake-args": [ | |
| "-DCMAKE_CXX_FLAGS=\"-Werror\"" | |
| ] | |
| }, | |
| "test": { | |
| "ctest-args": ["-LE", "xfail"], | |
| "pytest-args": ["-m", "not xfail"] | |
| } | |
| } |