File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
ateam_kenobi/src/plays/stop_plays Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -37,14 +37,14 @@ jobs:
3737 shell : bash
3838 run : |
3939 source /opt/ros/jazzy/setup.bash
40- colcon build --packages-up-to ${{ steps.get-changed-packages.outputs.changed-packages }}
40+ colcon build --packages-up-to ${{ steps.get-changed-packages.outputs.changed-packages }} --cmake-args -DCMAKE_BUILD_TYPE=Release
4141
4242 - name : Build Above Changes
4343 if : ${{ steps.get-changed-packages.outputs.changed-packages != '' }}
4444 shell : bash
4545 run : |
4646 source /opt/ros/jazzy/setup.bash
47- colcon build --packages-above-and-dependencies ${{ steps.get-changed-packages.outputs.changed-packages }}
47+ colcon build --packages-above-and-dependencies ${{ steps.get-changed-packages.outputs.changed-packages }} --cmake-args -DCMAKE_BUILD_TYPE=Release
4848
4949 - name : Test Changed Packages
5050 shell : bash
Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ bool isPointInOrBehindGoal(
159159std::vector<ateam_geometry::AnyShape> getAddedObstacles (const World & world)
160160{
161161 std::vector<ateam_geometry::AnyShape> obstacles;
162+ obstacles.reserve (3 );
162163
163164 const auto half_field_length = world.field .field_length / 2.0 ;
164165 const auto half_goal_width = world.field .goal_width / 2.0 ;
You can’t perform that action at this time.
0 commit comments