perf(patchworkpp): kill per-patch heap traffic in R-VPF / R-GPF (+14.8% Hz) #53
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: ROS nodes | |
| on: | |
| push: | |
| branches: ["master"] | |
| pull_request: | |
| branches: ["master"] | |
| jobs: | |
| ros2_node: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| release: [humble, jazzy] | |
| container: osrf/ros:${{ matrix.release }}-desktop | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run colcon | |
| run: source /opt/ros/${{ matrix.release }}/setup.bash && colcon build --event-handlers console_direct+ | |
| shell: bash |