mirror of
https://github.com/moveit/moveit_task_constructor.git
synced 2025-09-27 00:29:13 +08:00

Some checks failed
CI / ${{ matrix.env.IMAGE }}${{ matrix.env.NAME && ' • ' || ''}}${{ matrix.env.NAME }}${{ matrix.env.CATKIN_LINT && ' • catkin_lint' || ''}}${{ matrix.env.CLANG_TIDY && ' • clang-tidy' || '' }} (map[CLANG_TIDY:true IMAGE:noble-ci-testing TARGET_CMAKE_… (push) Has been cancelled
CI / ${{ matrix.env.IMAGE }}${{ matrix.env.NAME && ' • ' || ''}}${{ matrix.env.NAME }}${{ matrix.env.CATKIN_LINT && ' • catkin_lint' || ''}}${{ matrix.env.CLANG_TIDY && ' • clang-tidy' || '' }} (map[DOCKER_RUN_OPTS:-e PRELOAD=libasan.so.8 -e LSAN_OPTI… (push) Has been cancelled
CI / ${{ matrix.env.IMAGE }}${{ matrix.env.NAME && ' • ' || ''}}${{ matrix.env.NAME }}${{ matrix.env.CATKIN_LINT && ' • catkin_lint' || ''}}${{ matrix.env.CLANG_TIDY && ' • clang-tidy' || '' }} (map[IMAGE:jammy-ci]) (push) Has been cancelled
CI / ${{ matrix.env.IMAGE }}${{ matrix.env.NAME && ' • ' || ''}}${{ matrix.env.NAME }}${{ matrix.env.CATKIN_LINT && ' • catkin_lint' || ''}}${{ matrix.env.CLANG_TIDY && ' • clang-tidy' || '' }} (map[IMAGE:noble-ci NAME:ccov TARGET_CMAKE_ARGS:-DCMAKE_B… (push) Has been cancelled
Format / pre-commit (push) Has been cancelled
CI / doc (push) Has been cancelled
CI / deploy (push) Has been cancelled
- Fix clang error https://stackoverflow.com/questions/27954940/a-using-statement-compiles-with-g-fails-compilation-with-clang - Don't run pick-place test with asan: it doesn't finish. - Add PIP_BREAK_SYSTEM_PACKAGES - Fix coverage creation + upload
18 lines
838 B
XML
18 lines
838 B
XML
<?xml version="1.0"?>
|
|
<launch>
|
|
<include file="$(find moveit_resources_panda_moveit_config)/launch/demo.launch" pass_all_args="true">
|
|
<arg name="use_rviz" value="false" />
|
|
<arg name="execution_type" value="last point" /> <!-- arg name in 0.8 -->
|
|
<arg name="fake_execution_type" value="last point" /> <!-- arg name in 0.8.1 -->
|
|
<env name="LD_PRELOAD" value="$(optenv PRELOAD)" />
|
|
</include>
|
|
|
|
<!-- use MTC execution capability -->
|
|
<param name="move_group/capabilities" value="move_group/ExecuteTaskSolutionCapability" />
|
|
|
|
<test pkg="moveit_task_constructor_demo" type="pick_place_test" test-name="pick_place_test"
|
|
if="$(eval bool(optenv('PRELOAD')))">
|
|
<rosparam command="load" file="$(find moveit_task_constructor_demo)/config/panda_config.yaml" />
|
|
</test>
|
|
</launch>
|