Skip to content

Commit

Permalink
Temporarily add galactic CI (moveit#1107)
Browse files Browse the repository at this point in the history
* Add galactic CI
* Comment out rolling
* panda_ros_controllers -> panda_ros2_controllers
* Ignore flake8 tests
  • Loading branch information
Vatan Aksoy Tezer committed Mar 10, 2022
1 parent 419db3b commit 2c75c9f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yaml
Expand Up @@ -16,12 +16,16 @@ jobs:
fail-fast: false
matrix:
env:
- IMAGE: rolling-ci
# - IMAGE: rolling-ci
# ROS_DISTRO: rolling
# - IMAGE: rolling-ci-testing
# ROS_DISTRO: rolling
- IMAGE: galactic-ci
CCOV: true
ROS_DISTRO: rolling
- IMAGE: rolling-ci-testing
ROS_DISTRO: galactic
- IMAGE: galactic-ci-testing
ROS_DISTRO: galactic
IKFAST_TEST: true
ROS_DISTRO: rolling
CLANG_TIDY: pedantic
env:
CXXFLAGS: "-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls -Wno-deprecated-copy"
Expand Down
Expand Up @@ -69,7 +69,7 @@ def generate_launch_description():
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down
2 changes: 1 addition & 1 deletion moveit_ros/moveit_servo/launch/servo_example.launch.py
Expand Up @@ -70,7 +70,7 @@ def generate_launch_description():
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down
Expand Up @@ -47,7 +47,7 @@ def generate_servo_test_description(
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down
Expand Up @@ -34,7 +34,7 @@ def generate_servo_test_description(*args, gtest_name: SomeSubstitutionsType):
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down
1 change: 1 addition & 0 deletions moveit_ros/planning/CMakeLists.txt
Expand Up @@ -110,6 +110,7 @@ if(BUILD_TESTING)
set(ament_cmake_cppcheck_FOUND TRUE)
set(ament_cmake_cpplint_FOUND TRUE)
set(ament_cmake_uncrustify_FOUND TRUE)
set(ament_cmake_flake8_FOUND TRUE)

# Run all lint tests in package.xml except those listed above
ament_lint_auto_find_test_dependencies()
Expand Down
Expand Up @@ -55,7 +55,7 @@ def generate_move_group_test_description(*args, gtest_name: SomeSubstitutionsTyp
ros2_controllers_path = os.path.join(
get_package_share_directory("moveit_resources_panda_moveit_config"),
"config",
"panda_ros_controllers.yaml",
"panda_ros2_controllers.yaml",
)
ros2_control_node = Node(
package="controller_manager",
Expand Down

0 comments on commit 2c75c9f

Please sign in to comment.