Skip to content

Commit cbfaf92

Browse files
authored
update CI (#3)
Signed-off-by: Alejandro Hernandez Cordero <[email protected]>
1 parent 0c8c1af commit cbfaf92

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66
types: [opened, reopened, synchronize]
77
jobs:
88
build_and_test:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
steps:
11-
- uses: ros-tooling/setup-ros@v0.3
11+
- uses: ros-tooling/setup-ros@v0.7
1212
with:
1313
required-ros-distributions: rolling
14-
- uses: ros-tooling/action-ros-ci@v0.2
14+
- uses: ros-tooling/action-ros-ci@v0.4
1515
with:
1616
target-ros2-distro: rolling

netperf_tool/src/server_node.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ ServerNode::handle_get_results_request(
119119
{
120120
std::lock_guard guard{pub_gid_to_collected_info_map_mutex_};
121121
auto it = pub_gid_to_collected_info_map_.find(req->publisher_gid);
122-
if (it == pub_gid_to_collected_info_map_.end() && pub_gid_to_collected_info_map_.size() == 1uLL) {
122+
if (it == pub_gid_to_collected_info_map_.end() &&
123+
pub_gid_to_collected_info_map_.size() == 1uLL)
124+
{
123125
// workaround for cyclonedds bug, only works one test a time
124126
// https://github.com/ros2/rmw_cyclonedds/issues/377
125127
// TODO(ivanpauno): Do something else

0 commit comments

Comments
 (0)