Skip to content

Commit

Permalink
Integrated ros-industrial-ci and updated some external dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
CihatAltiparmak committed Jun 1, 2024
1 parent 5a222d3 commit bfbfc0d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/industrial_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on: [push, pull_request]

jobs:
industrial_ci:
name: ROS ${{ matrix.ROS_DISTRO }} (${{ matrix.ROS_REPO }})
strategy:
matrix:
ROS_DISTRO: [iron]
ROS_REPO: [testing, main]
env:
CCACHE_DIR: "${{ github.workspace }}/.ccache"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: 'ros-industrial/industrial_ci@master'
env: # either pass all entries explicitly
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
ROS_REPO: ${{ matrix.ROS_REPO }}
7 changes: 5 additions & 2 deletions moveit_middleware_benchmark.repos
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
repositories:
# Keep moveit_* repos here because they are released with moveit
moveit_msgs:
type: git
url: https://github.com/moveit/moveit2.git
version: main
moveit_resources:
type: git
url: https://github.com/moveit/moveit2_tutorials.git
url: https://github.com/moveit/moveit_resources.git
version: main
rmw_zenoh:
type: git
url: https://github.com/ros2/rmw_zenoh.git
version: main
4 changes: 2 additions & 2 deletions test/test_scenario_perception_pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class ScenarioPerceptionPipelineFixture : public benchmark::Fixture
ScenarioPerceptionPipelineTestCaseCreator::create_test_cases();
}

void SetUp(::benchmark::State& state)
void SetUp(::benchmark::State& /*state*/)
{
if (node_.use_count() == 0)
{
Expand All @@ -129,7 +129,7 @@ class ScenarioPerceptionPipelineFixture : public benchmark::Fixture
}
}

void TearDown(::benchmark::State& state)
void TearDown(::benchmark::State& /*state*/)
{
}
};
Expand Down

0 comments on commit bfbfc0d

Please sign in to comment.