Last active
August 29, 2015 14:20
-
-
Save garaemon/af9e75c5b31047fd0d7d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 2.8.3) | |
project(drc_task_common) | |
find_package(catkin REQUIRED COMPONENTS cmake_modules message_generation std_msgs std_srvs geometry_msgs roscpp rospy sensor_msgs visualization_msgs message_filters message_generation jsk_pcl_ros interactive_markers pcl_conversions jsk_topic_tools rviz eigen_conversions dynamic_tf_publisher jsk_interactive_marker jsk_recognition_msgs move_base_msgs rosgraph_msgs topic_tools jsk_topic_tools jsk_ik_server pcl_msgs jsk_footstep_msgs drc_com_common jsk_perception jsk_calibration resized_image_transport smach_msgs pcl_ros nav_msgs tf dynamic_reconfigure pr2_msgs trajectory_msgs roseus) | |
catkin_python_setup() | |
add_message_files(DIRECTORY msg FILES StringMultiArray.msg) | |
add_message_files(DIRECTORY msg FILES InteractiveMarkerArray.msg) | |
add_message_files(DIRECTORY msg FILES TMarkerInfo.msg) | |
add_message_files(DIRECTORY msg FILES Float32ArrayStamped.msg) | |
add_message_files(DIRECTORY msg FILES Int8Float64.msg) | |
add_service_files(DIRECTORY srv FILES RvizMenuCall.srv RvizMenuSelect.srv EusCommand.srv StringRequest.srv ICPService.srv GetIKArm.srv GetIKArmPose.srv GoPosCommand.srv Uint8Request.srv AngleVectorCommand.srv | |
SetValue.srv) | |
# Generate msg file from DRCParametersConfig file | |
execute_process( | |
COMMAND ${PROJECT_SOURCE_DIR}/scripts/gen_reconfigure_msg.py ${PROJECT_SOURCE_DIR}/msg/DRCParametersMessage.msg | |
${PROJECT_SOURCE_DIR}/msg/DRCParametersMessage.msg) | |
generate_dynamic_reconfigure_options( | |
config/vehicle/LocalPlannerMochikaeParams.cfg | |
config/vehicle/ObstacleDetectionParams.cfg | |
config/vehicle/PassthroughCarBody.cfg | |
config/vehicle/SwitchInputCloud.cfg | |
config/vehicle/VisualOdometryVerification.cfg | |
cfg/StandingDrillDetector.cfg | |
) | |
add_message_files(DIRECTORY msg FILES DRCParametersMessage.msg) | |
generate_messages(DEPENDENCIES ${PCL_MSGS} std_msgs std_srvs visualization_msgs sensor_msgs geometry_msgs jsk_pcl_ros jsk_interactive_marker jsk_recognition_msgs move_base_msgs) | |
catkin_package( | |
CATKIN_DEPENDS message_runtime INCLUDE_DIRS | |
) | |
find_package(PkgConfig) | |
pkg_check_modules(yaml_cpp yaml-cpp REQUIRED) | |
if(${yaml_cpp_VERSION} VERSION_LESS "0.5.0") | |
## indigo yaml-cpp : 0.5.0 / hydro yaml-cpp : 0.3.0 | |
add_definitions("-DUSE_OLD_YAML") | |
endif() | |
include_directories( | |
include | |
${catkin_INCLUDE_DIRS} | |
) | |
link_directories(${catkin_LIBRARY_DIRS}) | |
find_package(Qt4 COMPONENTS QtCore QtGui REQUIRED) | |
include(${QT_USE_FILE}) | |
add_definitions(-DQT_NO_KEYWORDS -g) | |
qt4_wrap_ui(UIC_FILES | |
config/drc_teleop_interface.ui | |
) | |
include_directories(${CMAKE_CURRENT_BINARY_DIR}) | |
qt4_wrap_cpp(MOC_FILES | |
src/drc_task_common/drc_teleop_interface.h | |
) | |
set(SOURCE_FILES | |
src/drc_task_common/drc_teleop_interface.cpp | |
${MOC_FILES} | |
) | |
add_library(${PROJECT_NAME} ${SOURCE_FILES} ${UIC_FILES}) | |
add_dependencies(${PROJECT_NAME} ${PROJECT_NAME}_gencpp) | |
target_link_libraries(${PROJECT_NAME} ${QT_LIBRARIES} ${catkin_LIBRARIES}) | |
add_executable(manipulation_data_server src/drc_task_common/manipulation_data_server.cpp src/drc_task_common/manipulation_data_helpers.cpp) | |
target_link_libraries(manipulation_data_server | |
${catkin_LIBRARIES} | |
yaml-cpp | |
) | |
add_dependencies(manipulation_data_server ${PROJECT_NAME}_gencpp) | |
add_executable(standing_drill_detector src/drc_task_common/standing_drill_detector.cpp) | |
target_link_libraries(standing_drill_detector | |
${catkin_LIBRARIES} | |
yaml-cpp | |
) | |
add_dependencies(standing_drill_detector ${PROJECT_NAME}_gencpp) | |
add_executable(manipulation_data_visualizer src/drc_task_common/manipulation_data_visualizer.cpp src/drc_task_common/manipulation_data_helpers.cpp) | |
target_link_libraries(manipulation_data_visualizer | |
${catkin_LIBRARIES} | |
yaml-cpp | |
) | |
add_dependencies(manipulation_data_visualizer ${PROJECT_NAME}_gencpp) | |
add_executable(kdtree_obstacle src/drc_task_common/kdtree_obstacle_detection.cpp) | |
add_dependencies(kdtree_obstacle ${PROJECT_NAME}_gencfg ${PROJECT_NAME}_gencpp) | |
target_link_libraries(kdtree_obstacle ${catkin_LIBRARIES}) | |
add_executable(simplified_local_planner_mochikae src/drc_task_common/simplified_local_planner_mochikae.cpp) | |
add_dependencies(simplified_local_planner_mochikae ${PROJECT_NAME}_gencfg ${PROJECT_NAME}_gencpp) | |
target_link_libraries(simplified_local_planner_mochikae ${catkin_LIBRARIES}) | |
add_executable(switch_input_cloud src/drc_task_common/input_cloud_switching.cpp) | |
add_dependencies(switch_input_cloud ${PROJECT_NAME}_gencfg ${PROJECT_NAME}_gencpp) | |
target_link_libraries(switch_input_cloud ${catkin_LIBRARIES}) | |
add_executable(visual_odometry_verification src/drc_task_common/visual_odometry_verification.cpp) | |
add_dependencies(visual_odometry_verification ${PROJECT_NAME}_gencfg ${PROJECT_NAME}_gencpp) | |
target_link_libraries(visual_odometry_verification ${catkin_LIBRARIES}) | |
add_executable(passthrough_car_body src/drc_task_common/passthrough_car_body.cpp) | |
add_dependencies(passthrough_car_body ${PROJECT_NAME}_gencfg ${PROJECT_NAME}_gencpp) | |
target_link_libraries(passthrough_car_body ${catkin_LIBRARIES}) | |
execute_process( | |
COMMAND mkdir -p ${PROJECT_SOURCE_DIR}/pcds) | |
catkin_download_test_data(drill_pcd | |
http://www.jsk.t.u-tokyo.ac.jp/~ueda/dataset/2015/02/drill.pcd | |
DESTINATION ${PROJECT_SOURCE_DIR}/pcds) | |
# catkin_download_test_data(drill_full_pcd | |
# http://www.jsk.t.u-tokyo.ac.jp/~ueda/dataset/2015/02/drill_full.pcd | |
# DESTINATION ${PROJECT_SOURCE_DIR}/pcds) | |
execute_process( | |
COMMAND mkdir -p ${PROJECT_SOURCE_DIR}/models) | |
catkin_download_test_data(gun_drill_dae | |
http://www.jsk.t.u-tokyo.ac.jp/~ohara/dataset/2015/03/gun_drill.dae | |
DESTINATION ${PROJECT_SOURCE_DIR}/models) | |
catkin_download_test_data(gun_drill_jpg | |
http://www.jsk.t.u-tokyo.ac.jp/~ohara/dataset/2015/03/gun_drill_color.jpg | |
DESTINATION ${PROJECT_SOURCE_DIR}/models) | |
catkin_download_test_data(gun_drill_model | |
http://www.jsk.t.u-tokyo.ac.jp/~ohara/dataset/2015/03/gun-drill.l | |
DESTINATION ${PROJECT_SOURCE_DIR}/models) | |
catkin_download_test_data(takenoko_drill_dae | |
http://www.jsk.t.u-tokyo.ac.jp/~ohara/dataset/2015/03/takenoko_drill.dae | |
DESTINATION ${PROJECT_SOURCE_DIR}/models) | |
catkin_download_test_data(takenoko_drill_jpg | |
http://www.jsk.t.u-tokyo.ac.jp/~ohara/dataset/2015/03/dewalt_takenoko_new-best-exported01.jpg | |
DESTINATION ${PROJECT_SOURCE_DIR}/models) | |
catkin_download_test_data(takenoko_drill_model | |
http://www.jsk.t.u-tokyo.ac.jp/~ohara/dataset/2015/03/takenoko-drill.l | |
DESTINATION ${PROJECT_SOURCE_DIR}/models) | |
add_custom_target(all_drc_task_common_downloads ALL DEPENDS | |
drill_pcd # todo old now | |
# drill_full_pcd | |
gun_drill_dae gun_drill_jpg gun_drill_model takenoko_drill_dae takenoko_drill_jpg takenoko_drill_model) | |
install(TARGETS | |
${PROJECT_NAME} | |
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} | |
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} | |
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} | |
) | |
install(FILES | |
plugin_description.xml | |
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | |
) | |
install(DIRECTORY icons/ | |
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/icons | |
) | |
install(DIRECTORY scripts launch | |
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} | |
USE_SOURCE_PERMISSIONS) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Script started on Wed 06 May 2015 01:09:40 PM JST | |
garaemon has logged on 7 from . | |
garaemon has logged on pts/1 from :0.0. | |
DISPLAY set to :0 | |
Now using node v0.10.28 | |
switching to jsk.hydro:devel (catkin) | |
╻ ╻┏━╸╻ ┏━╸┏━┓┏┳┓┏━╸ ┏┳┓┏━┓┏━┓╺┳╸┏━╸┏━┓ | |
┃╻┃┣╸ ┃ ┃ ┃ ┃┃┃┃┣╸ ┃┃┃┣━┫┗━┓ ┃ ┣╸ ┣┳┛ | |
┗┻┛┗━╸┗━╸┗━╸┗━┛╹ ╹┗━╸ ┛ ╹ ╹╹ ╹┗━┛ ╹ ┗━╸╹┗╸ | |
┏━╸┏━┓┏━┓┏━┓┏━╸┏┳┓┏━┓┏┓╻┏━┓╻ ╻┏━╸╺┳┓┏━┓ ╻ ╻┏━╸╻ ╻╺┓ | |
┃╺┓┣━┫┣┳┛┣━┫┣╸ ┃┃┃┃ ┃┃┗┫┃┣┛┃ ┃┣╸ ┃┃┣━┫╺━╸┃╻┃┗━┓┗━┫ ┃ | |
┗━┛╹ ╹╹┗╸╹ ╹┗━╸╹ ╹┗━┛╹ ╹┗━╸┗━┛┗━╸╺┻┛╹ ╹ ┗┻┛┗━┛ ╹╺┻╸ | |
Using /home/garaemon/.rvm/gems/ruby-2.2.0 | |
% | |
]2;garaemon@ueda-w541: ~/ros/hydro/src/jsk-ros-pkg/jsk_demos/jsk_2015_06_hrp_drc/drc_task_common]1;..c_task_common | |
[J[0;38;5;231;48;5;6m master [0;38;5;6;48;5;2;22m [0;38;5;15;48;5;2mjsk.hydro [0;38;5;15;48;5;2;22m [0;38;5;15;48;5;2mhydro [0;38;5;15;48;5;2;22m [0;38;5;15;48;5;2mhttp://localhost:11311 [0;38;5;2;48;5;0;22m [0;38;5;15;48;5;0;1m | |
[0;38;5;0;48;5;24;22m [0;38;5;7;48;5;24m⋯ [0;38;5;14;48;5;24;22m [0;38;5;7;48;5;24mjsk_demos [0;38;5;14;48;5;24;22m [0;38;5;7;48;5;24mjsk_2015_06_hrp_drc [0;38;5;14;48;5;24;22m [0;38;5;15;48;5;24;1mdrc_task_common [0;38;5;24;48;5;0;22m [0;38;5;15;48;5;0;1m | |
[0;38;5;0;48;5;4;22m [0;38;5;15;48;5;4;1mgaraemon [0;38;5;4;48;5;24;22m [0;38;5;15;48;5;24m@ueda-w541: [0;38;5;24;48;5;0;22m [0;38;5;15;48;5;0;1mYes, Master? [0;38;5;0;49;22m | |
$ [?1h=rrm -rf ~/ros/hydro/devel/share/roseus/ros[?1l> | |
% | |
]2;garaemon@ueda-w541: ~/ros/hydro/src/jsk-ros-pkg/jsk_demos/jsk_2015_06_hrp_drc/drc_task_common]1;..c_task_common | |
[J[0;38;5;231;48;5;6m master [0;38;5;6;48;5;2;22m [0;38;5;15;48;5;2mjsk.hydro [0;38;5;15;48;5;2;22m [0;38;5;15;48;5;2mhydro [0;38;5;15;48;5;2;22m [0;38;5;15;48;5;2mhttp://localhost:11311 [0;38;5;2;48;5;0;22m [0;38;5;15;48;5;0;1m | |
[0;38;5;0;48;5;24;22m [0;38;5;7;48;5;24m⋯ [0;38;5;14;48;5;24;22m [0;38;5;7;48;5;24mjsk_demos [0;38;5;14;48;5;24;22m [0;38;5;7;48;5;24mjsk_2015_06_hrp_drc [0;38;5;14;48;5;24;22m [0;38;5;15;48;5;24;1mdrc_task_common [0;38;5;24;48;5;0;22m [0;38;5;15;48;5;0;1m | |
[0;38;5;0;48;5;4;22m [0;38;5;15;48;5;4;1mgaraemon [0;38;5;4;48;5;24;22m [0;38;5;15;48;5;24m@ueda-w541: [0;38;5;24;48;5;0;22m [0;38;5;15;48;5;0;1mYes, Master? [0;38;5;0;49;22m | |
$ [?1h=ccatkin b -iv drc_task_common[?1l> | |
==> Expanding alias 'b' from 'catkin b -iv drc_task_common' to 'catkin build -iv drc_task_common' | |
-------------------------------------------------------------------------------- | |
Profile: default | |
Extending: [cached] /home/garaemon/ros/hydro_parent/devel:/opt/ros/hydro | |
Workspace: /home/garaemon/ros/hydro | |
Source Space: [exists] /home/garaemon/ros/hydro/src | |
Build Space: [exists] /home/garaemon/ros/hydro/build | |
Devel Space: [exists] /home/garaemon/ros/hydro/devel | |
Install Space: [missing] /home/garaemon/ros/hydro/install | |
DESTDIR: None | |
-------------------------------------------------------------------------------- | |
Isolate Develspaces: False | |
Install Packages: False | |
Isolate Installs: False | |
-------------------------------------------------------------------------------- | |
Additional CMake Args: None | |
Additional Make Args: None | |
Additional catkin Make Args: None | |
-------------------------------------------------------------------------------- | |
Workspace configuration appears valid. | |
-------------------------------------------------------------------------------- | |
WARNING: Package name "VSProjects" does not follow the naming conventions. It should start with a lower case letter and only contain lower case letters, digits and underscores. | |
Found '290' packages in 0.3 seconds. | |
Starting ==> artoolkit | |
]2;[build] 0/37[build - 0.1] [artoolkit - 0.0] [1/8 Active | 0/37 Completed] | |
[artoolkit] ==> '/home/garaemon/ros/hydro/build/artoolkit/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/artoolkit' | |
]2;[build] 0/37[build - 0.1] [artoolkit - 0.0] [1/8 Active | 0/37 Completed] | |
Starting ==> assimp_devel | |
]2;[build] 0/37[build - 0.1] [artoolkit - 0.0] [assimp_devel - 0.0] | |
[assimp_devel] ==> '/home/garaemon/ros/hydro/build/assimp_devel/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/assimp_devel' | |
]2;[build] 0/37[build - 0.1] [artoolkit - 0.0] [assimp_devel - 0.0] | |
Starting ==> dynamic_tf_publisher | |
]2;[build] 0/37[build - 0.1] [artoolkit - 0.0] [assimp_devel ... [3/8 Active | 0/37 Completed] | |
[dynamic_tf_publisher] ==> '/home/garaemon/ros/hydro/build/dynamic_tf_publisher/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/dynamic_tf_publisher' | |
]2;[build] 0/37[build - 0.2] [artoolkit - 0.1] [assimp_devel ... [3/8 Active | 0/37 Completed] | |
Starting ==> joy_mouse | |
]2;[build] 0/37[build - 0.2] [artoolkit - 0.1] [assimp_devel ... [4/8 Active | 0/37 Completed] | |
[joy_mouse] ==> '/home/garaemon/ros/hydro/build/joy_mouse/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/joy_mouse' | |
]2;[build] 0/37[build - 0.2] [artoolkit - 0.1] [assimp_devel ... [4/8 Active | 0/37 Completed] | |
Starting ==> jsk_footstep_msgs | |
]2;[build] 0/37[build - 0.2] [artoolkit - 0.1] [assimp_devel ... [5/8 Active | 0/37 Completed] | |
[jsk_footstep_msgs] ==> '/home/garaemon/ros/hydro/build/jsk_footstep_msgs/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_footstep_msgs' | |
]2;[build] 0/37[build - 0.2] [artoolkit - 0.1] [assimp_devel ... [5/8 Active | 0/37 Completed] | |
Starting ==> jsk_gui_msgs | |
]2;[build] 0/37[build - 0.2] [artoolkit - 0.1] [assimp_devel ... [6/8 Active | 0/37 Completed] | |
[jsk_gui_msgs] ==> '/home/garaemon/ros/hydro/build/jsk_gui_msgs/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_gui_msgs' | |
]2;[build] 0/37[build - 0.3] [artoolkit - 0.2] [assimp_devel ... [6/8 Active | 0/37 Completed] | |
Starting ==> jsk_hark_msgs | |
]2;[build] 0/37[build - 0.3] [artoolkit - 0.2] [assimp_devel ... [7/8 Active | 0/37 Completed] | |
[jsk_hark_msgs] ==> '/home/garaemon/ros/hydro/build/jsk_hark_msgs/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_hark_msgs' | |
]2;[build] 0/37[build - 0.3] [artoolkit - 0.2] [assimp_devel ... [7/8 Active | 0/37 Completed] | |
Starting ==> jsk_network_tools | |
]2;[build] 0/37[build - 0.3] [artoolkit - 0.2] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[jsk_network_tools] ==> '/home/garaemon/ros/hydro/build/jsk_network_tools/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_network_tools' | |
]2;[build] 0/37[build - 0.3] [artoolkit - 0.2] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[artoolkit] <== '/home/garaemon/ros/hydro/build/artoolkit/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 0/37[build - 0.3] [artoolkit - 0.2] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[artoolkit] ==> '/home/garaemon/ros/hydro/build/artoolkit/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/artoolkit' | |
]2;[build] 0/37[build - 0.4] [artoolkit - 0.3] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[joy_mouse] <== '/home/garaemon/ros/hydro/build/joy_mouse/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 0/37[build - 0.4] [artoolkit - 0.3] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[jsk_hark_msgs] <== '/home/garaemon/ros/hydro/build/jsk_hark_msgs/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 0/37[build - 0.4] [artoolkit - 0.3] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[joy_mouse] ==> '/home/garaemon/ros/hydro/build/joy_mouse/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/joy_mouse' | |
]2;[build] 0/37[build - 0.4] [artoolkit - 0.3] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[jsk_gui_msgs] <== '/home/garaemon/ros/hydro/build/jsk_gui_msgs/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 0/37[build - 0.5] [artoolkit - 0.4] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[jsk_gui_msgs] ==> '/home/garaemon/ros/hydro/build/jsk_gui_msgs/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_gui_msgs' | |
]2;[build] 0/37[build - 0.5] [artoolkit - 0.4] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[jsk_hark_msgs] ==> '/home/garaemon/ros/hydro/build/jsk_hark_msgs/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_hark_msgs' | |
]2;[build] 0/37[build - 0.6] [artoolkit - 0.5] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[dynamic_tf_publisher] <== '/home/garaemon/ros/hydro/build/dynamic_tf_publisher/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 0/37[build - 0.7] [artoolkit - 0.6] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[dynamic_tf_publisher] ==> '/home/garaemon/ros/hydro/build/dynamic_tf_publisher/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/dynamic_tf_publisher' | |
]2;[build] 0/37[build - 0.7] [artoolkit - 0.6] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[jsk_footstep_msgs] <== '/home/garaemon/ros/hydro/build/jsk_footstep_msgs/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 0/37[build - 0.8] [artoolkit - 0.7] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[jsk_footstep_msgs] ==> '/home/garaemon/ros/hydro/build/jsk_footstep_msgs/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_footstep_msgs' | |
]2;[build] 0/37[build - 0.8] [artoolkit - 0.7] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[assimp_devel] <== '/home/garaemon/ros/hydro/build/assimp_devel/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 0/37[build - 0.8] [artoolkit - 0.7] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[assimp_devel] ==> '/home/garaemon/ros/hydro/build/assimp_devel/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/assimp_devel' | |
]2;[build] 0/37[build - 0.8] [artoolkit - 0.7] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[jsk_network_tools] <== '/home/garaemon/ros/hydro/build/jsk_network_tools/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 0/37[build - 0.9] [artoolkit - 0.8] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[jsk_network_tools] ==> '/home/garaemon/ros/hydro/build/jsk_network_tools/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_network_tools' | |
]2;[build] 0/37[build - 1.0] [artoolkit - 0.9] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
[joy_mouse] <== '/home/garaemon/ros/hydro/build/joy_mouse/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 0/37[build - 1.0] [artoolkit - 0.9] [assimp_devel ... [8/8 Active | 0/37 Completed] | |
Finished <== joy_mouse [ 0.9 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 1/37[build - 1.1] [artoolkit - 1.0] [assimp_devel ... [7/8 Active | 1/37 Completed] | |
Starting ==> jsk_recognition_msgs | |
]2;[build] 1/37[build - 1.1] [artoolkit - 1.0] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[jsk_recognition_msgs] ==> '/home/garaemon/ros/hydro/build/jsk_recognition_msgs/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_recognition_msgs' | |
]2;[build] 1/37[build - 1.2] [artoolkit - 1.1] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[dynamic_tf_publisher] [ 5%] Built target dynamic_tf_publisher_gencfg | |
]2;[build] 1/37[build - 1.3] [artoolkit - 1.2] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[dynamic_tf_publisher] [ 5%] Built target geometry_msgs_generate_messages_py | |
]2;[build] 1/37[build - 1.3] [artoolkit - 1.2] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[dynamic_tf_publisher] [ 5%] [ 10%] [ 10%] [ 15%] [ 21%] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 1/37[build - 1.4] [artoolkit - 1.3] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[dynamic_tf_publisher] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 1/37[build - 1.4] [artoolkit - 1.3] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[dynamic_tf_publisher] Generating EusLisp code from dynamic_tf_publisher/AssocTF.srv | |
]2;[build] 1/37[build - 1.5] [artoolkit - 1.4] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[dynamic_tf_publisher] [ 26%] [ 52%] Generating EusLisp code from dynamic_tf_publisher/DeleteTF.srv | |
]2;[build] 1/37[build - 1.5] [artoolkit - 1.4] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[artoolkit] [100%] Built target ARToolkit | |
]2;[build] 1/37[build - 1.6] [artoolkit - 1.5] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[jsk_gui_msgs] [ 2%] [ 4%] Generating EusLisp code from jsk_gui_msgs/VoiceMessage.msg | |
]2;[build] 1/37[build - 1.7] [artoolkit - 1.6] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[dynamic_tf_publisher] Generating EusLisp code from dynamic_tf_publisher/SetDynamicTF.srv | |
]2;[build] 1/37[build - 1.8] [artoolkit - 1.7] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[jsk_gui_msgs] [ 4%] Generating EusLisp code from jsk_gui_msgs/Gravity.msg | |
]2;[build] 1/37[build - 1.9] [artoolkit - 1.8] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[dynamic_tf_publisher] Generating EusLisp code from dynamic_tf_publisher/DissocTF.srv | |
]2;[build] 1/37[build - 1.9] [artoolkit - 1.8] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[dynamic_tf_publisher] Built target dynamic_tf_publisher_generate_messages_py | |
]2;[build] 1/37[build - 2.0] [artoolkit - 1.9] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
[artoolkit] <== '/home/garaemon/ros/hydro/build/artoolkit/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 1/37[build - 2.1] [artoolkit - 2.0] [assimp_devel ... [8/8 Active | 1/37 Completed] | |
Finished <== artoolkit [ 2.0 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 2/37[build - 2.2] [assimp_devel - 2.1] [dynamic_tf... [7/8 Active | 2/37 Completed] | |
Starting ==> pcl_conversions | |
]2;[build] 2/37[build - 2.3] [assimp_devel - 2.1] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[pcl_conversions] ==> '/home/garaemon/ros/hydro/build/pcl_conversions/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/pcl_conversions' | |
]2;[build] 2/37[build - 2.3] [assimp_devel - 2.2] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] [ 4%] [ 4%] [ 4%] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 2/37[build - 2.4] [assimp_devel - 2.3] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] [ 4%] Built target std_msgs_generate_messages_cpp | |
]2;[build] 2/37[build - 2.5] [assimp_devel - 2.3] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] Built target std_msgs_generate_messages_py | |
]2;[build] 2/37[build - 2.5] [assimp_devel - 2.4] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] Built target geometry_msgs_generate_messages_py | |
]2;[build] 2/37[build - 2.6] [assimp_devel - 2.4] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_footstep_msgs] [ 0%] Built target geometry_msgs_generate_messages_py | |
]2;[build] 2/37[build - 2.6] [assimp_devel - 2.5] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] [ 4%] [ 6%] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 2/37[build - 2.7] [assimp_devel - 2.5] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[dynamic_tf_publisher] [ 73%] [ 78%] Built target dynamic_tf_publisher_generate_messages_lisp | |
]2;[build] 2/37[build - 2.7] [assimp_devel - 2.6] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] Built target sensor_msgs_generate_messages_py | |
]2;[build] 2/37[build - 2.8] [assimp_devel - 2.7] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[dynamic_tf_publisher] Generating EusLisp manifest code for dynamic_tf_publisher | |
]2;[build] 2/37[build - 2.8] [assimp_devel - 2.7] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] Generating EusLisp code from jsk_gui_msgs/Tablet.msg | |
]2;[build] 2/37[build - 2.9] [assimp_devel - 2.8] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_footstep_msgs] [ 0%] [ 0%] [ 0%] [ 0%] Built target actionlib_msgs_generate_messages_py | |
]2;[build] 2/37[build - 2.9] [assimp_devel - 2.8] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[dynamic_tf_publisher] [100%] Built target dynamic_tf_publisher_generate_messages_cpp | |
]2;[build] 2/37[build - 3.0] [assimp_devel - 2.9] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_footstep_msgs] Built target actionlib_msgs_generate_messages_cpp | |
]2;[build] 2/37[build - 3.0] [assimp_devel - 2.9] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] [ 8%] [ 10%] [ 12%] Generating EusLisp code from jsk_gui_msgs/Touch.msg | |
]2;[build] 2/37[build - 3.1] [assimp_devel - 3.0] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_footstep_msgs] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 2/37[build - 3.2] [assimp_devel - 3.0] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_footstep_msgs] Built target actionlib_msgs_generate_messages_lisp | |
]2;[build] 2/37[build - 3.2] [assimp_devel - 3.1] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] [ 12%] Generating EusLisp code from jsk_gui_msgs/DeviceSensor.msg | |
]2;[build] 2/37[build - 3.2] [assimp_devel - 3.1] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] [ 12%] Generating EusLisp code from jsk_gui_msgs/AndroidSensor.msg | |
]2;[build] 2/37[build - 3.3] [assimp_devel - 3.2] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 2/37[build - 3.3] [assimp_devel - 3.2] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_gui_msgs] [ 14%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 2/37[build - 3.4] [assimp_devel - 3.3] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[assimp_devel] [100%] Built target libassimp_devel | |
]2;[build] 2/37[build - 3.5] [assimp_devel - 3.4] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[jsk_footstep_msgs] [ 0%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 2/37[build - 3.5] [assimp_devel - 3.4] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
[assimp_devel] <== '/home/garaemon/ros/hydro/build/assimp_devel/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 2/37[build - 3.6] [assimp_devel - 3.5] [dynamic_tf... [8/8 Active | 2/37 Completed] | |
Finished <== assimp_devel [ 3.5 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 3/37[build - 3.7] [dynamic_tf_publisher - 3.5] [js... [7/8 Active | 3/37 Completed] | |
Starting ==> posedetection_msgs | |
]2;[build] 3/37[build - 3.7] [dynamic_tf_publisher - 3.6] [js... [8/8 Active | 3/37 Completed] | |
[posedetection_msgs] ==> '/home/garaemon/ros/hydro/build/posedetection_msgs/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/posedetection_msgs' | |
]2;[build] 3/37[build - 3.8] [dynamic_tf_publisher - 3.7] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] Generating EusLisp code from jsk_gui_msgs/Action.msg | |
]2;[build] 3/37[build - 3.9] [dynamic_tf_publisher - 3.7] [js... [8/8 Active | 3/37 Completed] | |
[jsk_recognition_msgs] <== '/home/garaemon/ros/hydro/build/jsk_recognition_msgs/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 3/37[build - 4.0] [dynamic_tf_publisher - 3.8] [js... [8/8 Active | 3/37 Completed] | |
[jsk_recognition_msgs] ==> '/home/garaemon/ros/hydro/build/jsk_recognition_msgs/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_recognition_msgs' | |
]2;[build] 3/37[build - 4.0] [dynamic_tf_publisher - 3.9] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] [ 14%] [ 17%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 3/37[build - 4.1] [dynamic_tf_publisher - 4.0] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] [ 1%] [ 3%] [ 4%] [ 6%] [ 7%] Generating EusLisp code from jsk_footstep_msgs/PlanFootstepsGoal.msg | |
]2;[build] 3/37[build - 4.2] [dynamic_tf_publisher - 4.0] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Generating EusLisp code from jsk_footstep_msgs/PlanFootstepsActionFeedback.msg | |
]2;[build] 3/37[build - 4.2] [dynamic_tf_publisher - 4.1] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] [ 19%] Generating EusLisp code from jsk_gui_msgs/MagneticField.msg | |
]2;[build] 3/37[build - 4.3] [dynamic_tf_publisher - 4.1] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Generating EusLisp code from jsk_footstep_msgs/PlanFootstepsAction.msg | |
]2;[build] 3/37[build - 4.4] [dynamic_tf_publisher - 4.2] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] Generating EusLisp code from jsk_gui_msgs/TouchEvent.msg | |
]2;[build] 3/37[build - 4.4] [dynamic_tf_publisher - 4.3] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] [ 33%] Generating EusLisp code from jsk_footstep_msgs/PlanFootstepsActionResult.msg | |
]2;[build] 3/37[build - 4.5] [dynamic_tf_publisher - 4.3] [js... [8/8 Active | 3/37 Completed] | |
[pcl_conversions] <== '/home/garaemon/ros/hydro/build/pcl_conversions/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 3/37[build - 4.5] [dynamic_tf_publisher - 4.4] [js... [8/8 Active | 3/37 Completed] | |
[pcl_conversions] ==> '/home/garaemon/ros/hydro/build/pcl_conversions/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/pcl_conversions' | |
]2;[build] 3/37[build - 4.6] [dynamic_tf_publisher - 4.4] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] [ 42%] Built target jsk_gui_msgs_generate_messages_cpp | |
]2;[build] 3/37[build - 4.6] [dynamic_tf_publisher - 4.5] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Generating EusLisp code from jsk_footstep_msgs/Footstep.msg | |
]2;[build] 3/37[build - 4.7] [dynamic_tf_publisher - 4.6] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Built target jsk_footstep_msgs_generate_messages_py | |
]2;[build] 3/37[build - 4.8] [dynamic_tf_publisher - 4.7] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] [ 44%] [ 72%] Built target jsk_gui_msgs_generate_messages_py | |
]2;[build] 3/37[build - 4.8] [dynamic_tf_publisher - 4.7] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] [ 57%] [ 81%] Built target jsk_footstep_msgs_generate_messages_lisp | |
]2;[build] 3/37[build - 4.9] [dynamic_tf_publisher - 4.8] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Built target jsk_footstep_msgs_generate_messages_cpp | |
]2;[build] 3/37[build - 5.0] [dynamic_tf_publisher - 4.8] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] [ 74%] Generating EusLisp code from jsk_gui_msgs/MultiTouch.msg | |
]2;[build] 3/37[build - 5.0] [dynamic_tf_publisher - 4.9] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] [ 76%] [100%] Generating EusLisp code from jsk_gui_msgs/Query.srv | |
]2;[build] 3/37[build - 5.1] [dynamic_tf_publisher - 5.0] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] Built target jsk_gui_msgs_generate_messages_lisp | |
]2;[build] 3/37[build - 5.2] [dynamic_tf_publisher - 5.0] [js... [8/8 Active | 3/37 Completed] | |
[jsk_gui_msgs] Generating EusLisp manifest code for jsk_gui_msgs | |
]2;[build] 3/37[build - 5.2] [dynamic_tf_publisher - 5.1] [js... [8/8 Active | 3/37 Completed] | |
[jsk_network_tools] [ 2%] [ 2%] [ 2%] Built target jsk_network_tools_gencfg | |
]2;[build] 3/37[build - 5.3] [dynamic_tf_publisher - 5.2] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] [ 83%] [ 84%] [ 86%] Generating EusLisp code from jsk_footstep_msgs/ExecFootstepsResult.msg | |
]2;[build] 3/37[build - 5.4] [dynamic_tf_publisher - 5.2] [js... [8/8 Active | 3/37 Completed] | |
[jsk_network_tools] Built target std_msgs_generate_messages_lisp | |
]2;[build] 3/37[build - 5.4] [dynamic_tf_publisher - 5.3] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Generating EusLisp code from jsk_footstep_msgs/PlanFootstepsFeedback.msg | |
]2;[build] 3/37[build - 5.5] [dynamic_tf_publisher - 5.3] [js... [8/8 Active | 3/37 Completed] | |
[jsk_network_tools] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 3/37[build - 5.5] [dynamic_tf_publisher - 5.4] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Generating EusLisp code from jsk_footstep_msgs/PlanFootstepsResult.msg | |
]2;[build] 3/37[build - 5.6] [dynamic_tf_publisher - 5.4] [js... [8/8 Active | 3/37 Completed] | |
[posedetection_msgs] <== '/home/garaemon/ros/hydro/build/posedetection_msgs/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 3/37[build - 5.6] [dynamic_tf_publisher - 5.5] [js... [8/8 Active | 3/37 Completed] | |
[posedetection_msgs] ==> '/home/garaemon/ros/hydro/build/posedetection_msgs/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/posedetection_msgs' | |
]2;[build] 3/37[build - 5.7] [dynamic_tf_publisher - 5.5] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] [ 87%] [ 89%] Generating EusLisp code from jsk_footstep_msgs/ExecFootstepsActionGoal.msg | |
]2;[build] 3/37[build - 5.7] [dynamic_tf_publisher - 5.6] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] [ 90%] Generating EusLisp code from jsk_footstep_msgs/ExecFootstepsAction.msg | |
]2;[build] 3/37[build - 5.8] [dynamic_tf_publisher - 5.7] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Generating EusLisp code from jsk_footstep_msgs/ExecFootstepsGoal.msg | |
]2;[build] 3/37[build - 5.9] [dynamic_tf_publisher - 5.7] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] [ 92%] [ 93%] [ 95%] Generating EusLisp code from jsk_footstep_msgs/PlanFootstepsActionGoal.msg | |
]2;[build] 3/37[build - 5.9] [dynamic_tf_publisher - 5.8] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Generating EusLisp code from jsk_footstep_msgs/ExecFootstepsActionFeedback.msg | |
]2;[build] 3/37[build - 6.0] [dynamic_tf_publisher - 5.8] [js... [8/8 Active | 3/37 Completed] | |
[jsk_network_tools] [ 2%] [ 2%] [ 2%] Built target std_msgs_generate_messages_cpp | |
]2;[build] 3/37[build - 6.0] [dynamic_tf_publisher - 5.9] [js... [8/8 Active | 3/37 Completed] | |
[jsk_footstep_msgs] Generating EusLisp code from jsk_footstep_msgs/ExecFootstepsActionResult.msg | |
]2;[build] 3/37[build - 6.1] [dynamic_tf_publisher - 5.9] [js... [8/8 Active | 3/37 Completed] | |
[jsk_network_tools] [ 2%] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 3/37[build - 6.1] [dynamic_tf_publisher - 5.9] [js... [8/8 Active | 3/37 Completed] | |
[jsk_network_tools] Built target std_msgs_generate_messages_py | |
]2;[build] 3/37[build - 6.1] [dynamic_tf_publisher - 6.0] [js... [8/8 Active | 3/37 Completed] | |
[jsk_network_tools] Built target sensor_msgs_generate_messages_py | |
]2;[build] 3/37[build - 6.1] [dynamic_tf_publisher - 6.0] [js... [8/8 Active | 3/37 Completed] | |
[pcl_conversions] <== '/home/garaemon/ros/hydro/build/pcl_conversions/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 3/37[build - 6.2] [dynamic_tf_publisher - 6.1] [js... [8/8 Active | 3/37 Completed] | |
Finished <== pcl_conversions [ 4.0 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 4/37[build - 6.3] [dynamic_tf_publisher - 6.1] [js... [7/8 Active | 4/37 Completed] | |
Starting ==> roseus | |
]2;[build] 4/37[build - 6.3] [dynamic_tf_publisher - 6.2] [js... [8/8 Active | 4/37 Completed] | |
[roseus] ==> '/home/garaemon/ros/hydro/build/roseus/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/roseus' | |
]2;[build] 4/37[build - 6.4] [dynamic_tf_publisher - 6.2] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 0%] Built target pcl_msgs_generate_messages_py | |
]2;[build] 4/37[build - 6.4] [dynamic_tf_publisher - 6.3] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 0%] [ 0%] [ 0%] Built target sensor_msgs_generate_messages_py | |
]2;[build] 4/37[build - 6.4] [dynamic_tf_publisher - 6.3] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Built target std_msgs_generate_messages_py | |
]2;[build] 4/37[build - 6.5] [dynamic_tf_publisher - 6.3] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Built target geometry_msgs_generate_messages_py | |
]2;[build] 4/37[build - 6.6] [dynamic_tf_publisher - 6.4] [js... [8/8 Active | 4/37 Completed] | |
[jsk_footstep_msgs] [ 96%] [ 98%] Generating EusLisp code from jsk_footstep_msgs/ExecFootstepsFeedback.msg | |
]2;[build] 4/37[build - 6.6] [dynamic_tf_publisher - 6.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_footstep_msgs] [100%] Generating EusLisp code from jsk_footstep_msgs/FootstepArray.msg | |
]2;[build] 4/37[build - 6.6] [dynamic_tf_publisher - 6.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_footstep_msgs] Generating EusLisp manifest code for jsk_footstep_msgs | |
]2;[build] 4/37[build - 6.7] [dynamic_tf_publisher - 6.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] [ 5%] [ 8%] Generating EusLisp code from jsk_network_tools/FC2OCS.msg | |
]2;[build] 4/37[build - 6.7] [dynamic_tf_publisher - 6.6] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] [ 31%] [ 34%] [ 37%] [ 60%] [ 85%] Generating EusLisp code from jsk_network_tools/FC2OCSLargeData.msg | |
]2;[build] 4/37[build - 6.8] [dynamic_tf_publisher - 6.6] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] Generating EusLisp code from jsk_network_tools/AllTypeTest.msg | |
]2;[build] 4/37[build - 6.8] [dynamic_tf_publisher - 6.6] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] Built target jsk_network_tools_generate_messages_lisp | |
]2;[build] 4/37[build - 6.8] [dynamic_tf_publisher - 6.7] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] Generating EusLisp code from jsk_network_tools/Heartbeat.msg | |
]2;[build] 4/37[build - 6.9] [dynamic_tf_publisher - 6.7] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 0%] [ 0%] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 4/37[build - 6.9] [dynamic_tf_publisher - 6.8] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] [ 88%] Built target jsk_network_tools_generate_messages_cpp | |
]2;[build] 4/37[build - 6.9] [dynamic_tf_publisher - 6.8] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Built target std_msgs_generate_messages_cpp | |
]2;[build] 4/37[build - 7.0] [dynamic_tf_publisher - 6.8] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 0%] Built target pcl_msgs_generate_messages_cpp | |
]2;[build] 4/37[build - 7.0] [dynamic_tf_publisher - 6.9] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] Built target jsk_network_tools_generate_messages_py | |
]2;[build] 4/37[build - 7.1] [dynamic_tf_publisher - 7.0] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] Generating EusLisp code from jsk_network_tools/HeartbeatResponse.msg | |
]2;[build] 4/37[build - 7.2] [dynamic_tf_publisher - 7.0] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] [ 91%] [ 94%] Generating EusLisp code from jsk_network_tools/OpenNISample.msg | |
]2;[build] 4/37[build - 7.2] [dynamic_tf_publisher - 7.1] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] Generating EusLisp code from jsk_network_tools/OCS2FC.msg | |
]2;[build] 4/37[build - 7.3] [dynamic_tf_publisher - 7.1] [js... [8/8 Active | 4/37 Completed] | |
[roseus] <== '/home/garaemon/ros/hydro/build/roseus/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 4/37[build - 7.3] [dynamic_tf_publisher - 7.2] [js... [8/8 Active | 4/37 Completed] | |
[roseus] ==> '/home/garaemon/ros/hydro/build/roseus/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/roseus' | |
]2;[build] 4/37[build - 7.4] [dynamic_tf_publisher - 7.2] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 0%] [ 1%] [ 1%] [ 2%] [ 2%] Generating EusLisp code from jsk_recognition_msgs/ParallelEdge.msg | |
]2;[build] 4/37[build - 7.4] [dynamic_tf_publisher - 7.3] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 4/37[build - 7.4] [dynamic_tf_publisher - 7.3] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 2%] Generating EusLisp code from jsk_recognition_msgs/PointsArray.msg | |
]2;[build] 4/37[build - 7.5] [dynamic_tf_publisher - 7.3] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] [ 97%] [100%] Generating EusLisp code from jsk_network_tools/CompressedAngleVectorPR2.msg | |
]2;[build] 4/37[build - 7.5] [dynamic_tf_publisher - 7.4] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/TimeRange.msg | |
]2;[build] 4/37[build - 7.6] [dynamic_tf_publisher - 7.4] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/SparseOccupancyGridColumn.msg | |
]2;[build] 4/37[build - 7.6] [dynamic_tf_publisher - 7.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_network_tools] Generating EusLisp manifest code for jsk_network_tools | |
]2;[build] 4/37[build - 7.7] [dynamic_tf_publisher - 7.5] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 0%] [ 2%] [ 4%] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 4/37[build - 7.7] [dynamic_tf_publisher - 7.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 2%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 4/37[build - 7.7] [dynamic_tf_publisher - 7.6] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 6%] [ 6%] Generating EusLisp code from posedetection_msgs/Feature1D.msg | |
]2;[build] 4/37[build - 7.8] [dynamic_tf_publisher - 7.6] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Generating EusLisp code from posedetection_msgs/Feature0D.msg | |
]2;[build] 4/37[build - 7.8] [dynamic_tf_publisher - 7.6] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 2%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 4/37[build - 7.8] [dynamic_tf_publisher - 7.7] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Built target pcl_msgs_generate_messages_lisp | |
]2;[build] 4/37[build - 7.9] [dynamic_tf_publisher - 7.7] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 6%] [ 6%] [ 6%] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 4/37[build - 7.9] [dynamic_tf_publisher - 7.8] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Built target std_msgs_generate_messages_cpp | |
]2;[build] 4/37[build - 8.0] [dynamic_tf_publisher - 7.8] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Generating EusLisp code from posedetection_msgs/ImageFeature0D.msg | |
]2;[build] 4/37[build - 8.0] [dynamic_tf_publisher - 7.9] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Built target std_msgs_generate_messages_py | |
]2;[build] 4/37[build - 8.0] [dynamic_tf_publisher - 7.9] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Built target sensor_msgs_generate_messages_py | |
]2;[build] 4/37[build - 8.0] [dynamic_tf_publisher - 7.9] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 3%] [ 4%] Generating EusLisp code from jsk_recognition_msgs/Circle2DArray.msg | |
]2;[build] 4/37[build - 8.1] [dynamic_tf_publisher - 7.9] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/SparseOccupancyGridCell.msg | |
]2;[build] 4/37[build - 8.1] [dynamic_tf_publisher - 8.0] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 8%] Generating EusLisp code from posedetection_msgs/Object6DPose.msg | |
]2;[build] 4/37[build - 8.2] [dynamic_tf_publisher - 8.0] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 4%] [ 4%] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 4/37[build - 8.2] [dynamic_tf_publisher - 8.1] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/ModelCoefficientsArray.msg | |
]2;[build] 4/37[build - 8.2] [dynamic_tf_publisher - 8.1] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 29%] [ 30%] Built target jsk_recognition_msgs_generate_messages_py | |
]2;[build] 4/37[build - 8.3] [dynamic_tf_publisher - 8.1] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 31%] Generating EusLisp code from jsk_recognition_msgs/Rect.msg | |
]2;[build] 4/37[build - 8.3] [dynamic_tf_publisher - 8.1] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 10%] [ 10%] Generating EusLisp code from posedetection_msgs/ImageFeature1D.msg | |
]2;[build] 4/37[build - 8.3] [dynamic_tf_publisher - 8.2] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 31%] Generating EusLisp code from jsk_recognition_msgs/Int32Stamped.msg | |
]2;[build] 4/37[build - 8.4] [dynamic_tf_publisher - 8.2] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 12%] [ 12%] [ 14%] [ 14%] Generating EusLisp code from posedetection_msgs/ObjectDetection.msg | |
]2;[build] 4/37[build - 8.4] [dynamic_tf_publisher - 8.3] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Built target geometry_msgs_generate_messages_py | |
]2;[build] 4/37[build - 8.5] [dynamic_tf_publisher - 8.3] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Generating EusLisp code from posedetection_msgs/Curve1D.msg | |
]2;[build] 4/37[build - 8.5] [dynamic_tf_publisher - 8.3] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 32%] [ 57%] Generating EusLisp code from jsk_recognition_msgs/Torus.msg | |
]2;[build] 4/37[build - 8.5] [dynamic_tf_publisher - 8.4] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 81%] Built target jsk_recognition_msgs_generate_messages_cpp | |
]2;[build] 4/37[build - 8.6] [dynamic_tf_publisher - 8.4] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 16%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 4/37[build - 8.6] [dynamic_tf_publisher - 8.4] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 4/37[build - 8.6] [dynamic_tf_publisher - 8.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/BoundingBox.msg | |
]2;[build] 4/37[build - 8.6] [dynamic_tf_publisher - 8.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Built target jsk_recognition_msgs_generate_messages_lisp | |
]2;[build] 4/37[build - 8.7] [dynamic_tf_publisher - 8.5] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Generating EusLisp code from posedetection_msgs/Feature0DDetect.srv | |
]2;[build] 4/37[build - 8.7] [dynamic_tf_publisher - 8.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 82%] [ 82%] Generating EusLisp code from jsk_recognition_msgs/TorusArray.msg | |
]2;[build] 4/37[build - 8.7] [dynamic_tf_publisher - 8.6] [js... [8/8 Active | 4/37 Completed] | |
[roseus] [ 0%] [ 0%] [ 0%] Generating EusLisp code from actionlib/TestActionGoal.msg | |
]2;[build] 4/37[build - 8.7] [dynamic_tf_publisher - 8.6] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestAction.msg | |
]2;[build] 4/37[build - 8.7] [dynamic_tf_publisher - 8.6] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 83%] [ 84%] Generating EusLisp code from jsk_recognition_msgs/SparseImage.msg | |
]2;[build] 4/37[build - 8.8] [dynamic_tf_publisher - 8.6] [js... [8/8 Active | 4/37 Completed] | |
[roseus] [ 0%] [ 0%] [ 0%] Generating EusLisp code from actionlib/TestActionResult.msg | |
]2;[build] 4/37[build - 8.8] [dynamic_tf_publisher - 8.7] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/SimpleOccupancyGridArray.msg | |
]2;[build] 4/37[build - 8.8] [dynamic_tf_publisher - 8.7] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestAction.msg | |
]2;[build] 4/37[build - 8.8] [dynamic_tf_publisher - 8.7] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 18%] [ 20%] Generating EusLisp code from posedetection_msgs/TargetObj.srv | |
]2;[build] 4/37[build - 8.8] [dynamic_tf_publisher - 8.7] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestActionGoal.msg | |
]2;[build] 4/37[build - 8.9] [dynamic_tf_publisher - 8.7] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Generating EusLisp code from posedetection_msgs/Feature1DDetect.srv | |
]2;[build] 4/37[build - 8.9] [dynamic_tf_publisher - 8.7] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/SlicedPointCloud.msg | |
]2;[build] 4/37[build - 8.9] [dynamic_tf_publisher - 8.7] [js... [8/8 Active | 4/37 Completed] | |
[roseus] [ 0%] [ 0%] Built target eustf | |
]2;[build] 4/37[build - 8.9] [dynamic_tf_publisher - 8.8] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestAction.msg | |
]2;[build] 4/37[build - 8.9] [dynamic_tf_publisher - 8.8] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestAction.msg | |
]2;[build] 4/37[build - 8.9] [dynamic_tf_publisher - 8.8] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 22%] [ 22%] [ 44%] [ 71%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 4/37[build - 9.0] [dynamic_tf_publisher - 8.8] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 73%] Built target posedetection_msgs_generate_messages_cpp | |
]2;[build] 4/37[build - 9.0] [dynamic_tf_publisher - 8.9] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 85%] [ 85%] [ 86%] Generating EusLisp code from jsk_recognition_msgs/SnapItRequest.msg | |
]2;[build] 4/37[build - 9.0] [dynamic_tf_publisher - 8.9] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 86%] Generating EusLisp code from jsk_recognition_msgs/SimpleOccupancyGrid.msg | |
]2;[build] 4/37[build - 9.1] [dynamic_tf_publisher - 8.9] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/ColorHistogramArray.msg | |
]2;[build] 4/37[build - 9.1] [dynamic_tf_publisher - 8.9] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Generating EusLisp code from posedetection_msgs/Detect.srv | |
]2;[build] 4/37[build - 9.1] [dynamic_tf_publisher - 8.9] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Built target posedetection_msgs_generate_messages_py | |
]2;[build] 4/37[build - 9.1] [dynamic_tf_publisher - 9.0] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] Generating EusLisp manifest code for posedetection_msgs | |
]2;[build] 4/37[build - 9.1] [dynamic_tf_publisher - 9.0] [js... [8/8 Active | 4/37 Completed] | |
[roseus] [ 1%] [ 1%] [ 2%] Generating EusLisp code from actionlib/TestActionGoal.msg | |
]2;[build] 4/37[build - 9.2] [dynamic_tf_publisher - 9.0] [js... [8/8 Active | 4/37 Completed] | |
[roseus] [ 2%] [ 2%] Generating EusLisp code from actionlib/TestActionResult.msg | |
]2;[build] 4/37[build - 9.2] [dynamic_tf_publisher - 9.0] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestActionFeedback.msg | |
]2;[build] 4/37[build - 9.2] [dynamic_tf_publisher - 9.1] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestActionGoal.msg | |
]2;[build] 4/37[build - 9.2] [dynamic_tf_publisher - 9.1] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/DepthErrorResult.msg | |
]2;[build] 4/37[build - 9.2] [dynamic_tf_publisher - 9.1] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestActionGoal.msg | |
]2;[build] 4/37[build - 9.3] [dynamic_tf_publisher - 9.1] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 73%] Built target posedetection_msgs_gencpp | |
]2;[build] 4/37[build - 9.3] [dynamic_tf_publisher - 9.2] [js... [8/8 Active | 4/37 Completed] | |
[roseus] [ 2%] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestActionFeedback.msg | |
]2;[build] 4/37[build - 9.3] [dynamic_tf_publisher - 9.2] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestActionFeedback.msg | |
]2;[build] 4/37[build - 9.4] [dynamic_tf_publisher - 9.2] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 95%] Built target posedetection_msgs_generate_messages_lisp | |
]2;[build] 4/37[build - 9.4] [dynamic_tf_publisher - 9.3] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestGoal.msg | |
]2;[build] 4/37[build - 9.4] [dynamic_tf_publisher - 9.3] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 87%] [ 88%] Generating EusLisp code from jsk_recognition_msgs/DepthCalibrationParameter.msg | |
]2;[build] 4/37[build - 9.5] [dynamic_tf_publisher - 9.4] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/PolygonArray.msg | |
]2;[build] 4/37[build - 9.5] [dynamic_tf_publisher - 9.4] [js... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestGoal.msg | |
]2;[build] 4/37[build - 9.6] [dynamic_tf_publisher - 9.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 88%] Generating EusLisp code from jsk_recognition_msgs/Circle2D.msg | |
]2;[build] 4/37[build - 9.6] [dynamic_tf_publisher - 9.5] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [ 97%] Built target feature0d_to_image | |
]2;[build] 4/37[build - 9.6] [dynamic_tf_publisher - 9.5] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 89%] [ 90%] Generating EusLisp code from jsk_recognition_msgs/RotatedRect.msg | |
]2;[build] 4/37[build - 9.7] [dynamic_tf_publisher - 9.5] [js... [8/8 Active | 4/37 Completed] | |
[posedetection_msgs] [100%] Built target feature0d_view | |
]2;[build] 4/37[build - 9.7] [dynamic_tf_publisher - 9.6] [js... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestActionFeedback.msg | |
]2;[build] 4/37[build - 9.7] [dynamic_tf_publisher - 9.6] [js... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestActionFeedback.msg | |
]2;[build] 4/37[build - 9.8] [dynamic_tf_publisher - 9.6] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 90%] Generating EusLisp code from jsk_recognition_msgs/SparseOccupancyGridArray.msg | |
]2;[build] 4/37[build - 9.8] [dynamic_tf_publisher - 9.7] [js... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestGoal.msg | |
]2;[build] 4/37[build - 9.9] [dynamic_tf_publisher - 9.8] [js... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 91%] Generating EusLisp code from jsk_recognition_msgs/ICPResult.msg | |
]2;[build] 4/37[build - 10.0] [dynamic_tf_publisher - 9.8] [j... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestResult.msg | |
]2;[build] 4/37[build - 10.0] [dynamic_tf_publisher - 9.9] [j... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestGoal.msg | |
]2;[build] 4/37[build - 10.0] [dynamic_tf_publisher - 9.9] [j... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestResult.msg | |
]2;[build] 4/37[build - 10.1] [dynamic_tf_publisher - 9.9] [j... [8/8 Active | 4/37 Completed] | |
[roseus] Built target roseus | |
]2;[build] 4/37[build - 10.1] [dynamic_tf_publisher - 10.0] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestResult.msg | |
]2;[build] 4/37[build - 10.1] [dynamic_tf_publisher - 10.0] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 92%] Generating EusLisp code from jsk_recognition_msgs/PosedCameraInfo.msg | |
]2;[build] 4/37[build - 10.2] [dynamic_tf_publisher - 10.0] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestGoal.msg | |
]2;[build] 4/37[build - 10.2] [dynamic_tf_publisher - 10.1] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 92%] Generating EusLisp code from jsk_recognition_msgs/LineArray.msg | |
]2;[build] 4/37[build - 10.3] [dynamic_tf_publisher - 10.2] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestResult.msg | |
]2;[build] 4/37[build - 10.4] [dynamic_tf_publisher - 10.2] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 93%] [ 94%] Generating EusLisp code from jsk_recognition_msgs/BoundingBoxMovement.msg | |
]2;[build] 4/37[build - 10.4] [dynamic_tf_publisher - 10.3] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestFeedback.msg | |
]2;[build] 4/37[build - 10.5] [dynamic_tf_publisher - 10.3] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestRequestAction.msg | |
]2;[build] 4/37[build - 10.5] [dynamic_tf_publisher - 10.4] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestResult.msg | |
]2;[build] 4/37[build - 10.6] [dynamic_tf_publisher - 10.4] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/Line.msg | |
]2;[build] 4/37[build - 10.6] [dynamic_tf_publisher - 10.5] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 94%] Generating EusLisp code from jsk_recognition_msgs/BoundingBoxArray.msg | |
]2;[build] 4/37[build - 10.6] [dynamic_tf_publisher - 10.5] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestFeedback.msg | |
]2;[build] 4/37[build - 10.7] [dynamic_tf_publisher - 10.5] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestActionGoal.msg | |
]2;[build] 4/37[build - 10.7] [dynamic_tf_publisher - 10.6] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestFeedback.msg | |
]2;[build] 4/37[build - 10.8] [dynamic_tf_publisher - 10.6] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 95%] Generating EusLisp code from jsk_recognition_msgs/RectArray.msg | |
]2;[build] 4/37[build - 10.8] [dynamic_tf_publisher - 10.7] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestRequestActionResult.msg | |
]2;[build] 4/37[build - 10.8] [dynamic_tf_publisher - 10.7] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestFeedback.msg | |
]2;[build] 4/37[build - 10.9] [dynamic_tf_publisher - 10.7] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 96%] Generating EusLisp code from jsk_recognition_msgs/ColorHistogram.msg | |
]2;[build] 4/37[build - 10.9] [dynamic_tf_publisher - 10.8] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestAction.msg | |
]2;[build] 4/37[build - 10.9] [dynamic_tf_publisher - 10.8] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestFeedback.msg | |
]2;[build] 4/37[build - 11.0] [dynamic_tf_publisher - 10.8] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 96%] Generating EusLisp code from jsk_recognition_msgs/ParallelEdgeArray.msg | |
]2;[build] 4/37[build - 11.0] [dynamic_tf_publisher - 10.9] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 97%] Generating EusLisp code from jsk_recognition_msgs/SparseOccupancyGrid.msg | |
]2;[build] 4/37[build - 11.0] [dynamic_tf_publisher - 10.9] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestRequestAction.msg | |
]2;[build] 4/37[build - 11.1] [dynamic_tf_publisher - 10.9] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestActionGoal.msg | |
]2;[build] 4/37[build - 11.1] [dynamic_tf_publisher - 11.0] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestAction.msg | |
]2;[build] 4/37[build - 11.2] [dynamic_tf_publisher - 11.0] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp code from jsk_recognition_msgs/RotatedRectStamped.msg | |
]2;[build] 4/37[build - 11.2] [dynamic_tf_publisher - 11.0] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] [ 98%] [100%] Generating EusLisp code from jsk_recognition_msgs/ClusterPointIndices.msg | |
]2;[build] 4/37[build - 11.3] [dynamic_tf_publisher - 11.1] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestRequestActionFeedback.msg | |
]2;[build] 4/37[build - 11.3] [dynamic_tf_publisher - 11.1] [... [8/8 Active | 4/37 Completed] | |
[jsk_recognition_msgs] Generating EusLisp manifest code for jsk_recognition_msgs | |
]2;[build] 4/37[build - 11.3] [dynamic_tf_publisher - 11.2] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestRequestActionResult.msg | |
]2;[build] 4/37[build - 11.4] [dynamic_tf_publisher - 11.2] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestActionFeedback.msg | |
]2;[build] 4/37[build - 11.4] [dynamic_tf_publisher - 11.3] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestRequestAction.msg | |
]2;[build] 4/37[build - 11.4] [dynamic_tf_publisher - 11.3] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestRequestActionGoal.msg | |
]2;[build] 4/37[build - 11.5] [dynamic_tf_publisher - 11.3] [... [8/8 Active | 4/37 Completed] | |
[dynamic_tf_publisher] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 4/37[build - 11.5] [dynamic_tf_publisher - 11.4] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestRequestGoal.msg | |
]2;[build] 4/37[build - 11.6] [dynamic_tf_publisher - 11.4] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestResult.msg | |
]2;[build] 4/37[build - 11.7] [dynamic_tf_publisher - 11.5] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestGoal.msg | |
]2;[build] 4/37[build - 11.7] [dynamic_tf_publisher - 11.6] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] Generating EusLisp code from actionlib/TestRequestActionFeedback.msg | |
]2;[build] 4/37[build - 11.8] [dynamic_tf_publisher - 11.6] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 3%] [ 3%] Generating EusLisp code from actionlib/TestRequestActionGoal.msg | |
]2;[build] 4/37[build - 11.8] [dynamic_tf_publisher - 11.7] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestFeedback.msg | |
]2;[build] 4/37[build - 11.8] [dynamic_tf_publisher - 11.7] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestActionFeedback.msg | |
]2;[build] 4/37[build - 11.9] [dynamic_tf_publisher - 11.7] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 3%] [ 4%] Generating EusLisp code from actionlib/TestRequestResult.msg | |
]2;[build] 4/37[build - 12.0] [dynamic_tf_publisher - 11.8] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestGoal.msg | |
]2;[build] 4/37[build - 12.0] [dynamic_tf_publisher - 11.9] [... [8/8 Active | 4/37 Completed] | |
[jsk_gui_msgs] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 4/37[build - 12.1] [dynamic_tf_publisher - 12.0] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 5%] [ 5%] [ 5%] [ 5%] Generating EusLisp code from actionlib/TwoIntsAction.msg | |
]2;[build] 4/37[build - 12.2] [dynamic_tf_publisher - 12.1] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TwoIntsActionGoal.msg | |
]2;[build] 4/37[build - 12.3] [dynamic_tf_publisher - 12.1] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestResult.msg | |
]2;[build] 4/37[build - 12.4] [dynamic_tf_publisher - 12.2] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 5%] Generating EusLisp code from actionlib/TwoIntsActionResult.msg | |
]2;[build] 4/37[build - 12.4] [dynamic_tf_publisher - 12.3] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 5%] Generating EusLisp code from actionlib/TestRequestGoal.msg | |
]2;[build] 4/37[build - 12.5] [dynamic_tf_publisher - 12.4] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestGoal.msg | |
]2;[build] 4/37[build - 12.5] [dynamic_tf_publisher - 12.4] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 5%] [ 6%] [ 6%] Generating EusLisp code from actionlib/TestRequestFeedback.msg | |
]2;[build] 4/37[build - 12.5] [dynamic_tf_publisher - 12.4] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib/TwoIntsAction.msg | |
]2;[build] 4/37[build - 12.5] [dynamic_tf_publisher - 12.4] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TestRequestFeedback.msg | |
]2;[build] 4/37[build - 12.6] [dynamic_tf_publisher - 12.4] [... [8/8 Active | 4/37 Completed] | |
[dynamic_tf_publisher] [100%] Built target dynamic_tf_publisher_generate_messages_eus | |
]2;[build] 4/37[build - 12.6] [dynamic_tf_publisher - 12.5] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 6%] [ 6%] Generating EusLisp code from actionlib/TwoIntsActionGoal.msg | |
]2;[build] 4/37[build - 12.6] [dynamic_tf_publisher - 12.5] [... [8/8 Active | 4/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib/TwoIntsActionFeedback.msg | |
]2;[build] 4/37[build - 12.6] [dynamic_tf_publisher - 12.5] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TwoIntsActionGoal.msg | |
]2;[build] 4/37[build - 12.7] [dynamic_tf_publisher - 12.5] [... [8/8 Active | 4/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TwoIntsGoal.msg | |
]2;[build] 4/37[build - 12.7] [dynamic_tf_publisher - 12.6] [... [8/8 Active | 4/37 Completed] | |
[dynamic_tf_publisher] [100%] Built target dynamic_tf_publisher_generate_messages | |
]2;[build] 4/37[build - 12.7] [dynamic_tf_publisher - 12.6] [... [8/8 Active | 4/37 Completed] | |
[dynamic_tf_publisher] <== '/home/garaemon/ros/hydro/build/dynamic_tf_publisher/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 4/37[build - 12.7] [dynamic_tf_publisher - 12.6] [... [8/8 Active | 4/37 Completed] | |
Finished <== dynamic_tf_publisher [ 12.6 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 5/37[build - 12.8] [jsk_footstep_msgs - 12.6] [jsk... [7/8 Active | 5/37 Completed] | |
Starting ==> rviz | |
]2;[build] 5/37[build - 12.8] [jsk_footstep_msgs - 12.6] [jsk... [8/8 Active | 5/37 Completed] | |
[rviz] ==> '/home/garaemon/ros/hydro/build/rviz/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/rviz' | |
]2;[build] 5/37[build - 12.8] [jsk_footstep_msgs - 12.6] [jsk... [8/8 Active | 5/37 Completed] | |
[roseus] [ 6%] [ 6%] [ 6%] [ 6%] [ 6%] Generating EusLisp code from actionlib/TwoIntsActionResult.msg | |
]2;[build] 5/37[build - 12.8] [jsk_footstep_msgs - 12.7] [jsk... [8/8 Active | 5/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TwoIntsActionGoal.msg | |
]2;[build] 5/37[build - 12.9] [jsk_footstep_msgs - 12.7] [jsk... [8/8 Active | 5/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TwoIntsResult.msg | |
]2;[build] 5/37[build - 12.9] [jsk_footstep_msgs - 12.7] [jsk... [8/8 Active | 5/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TwoIntsAction.msg | |
]2;[build] 5/37[build - 12.9] [jsk_footstep_msgs - 12.8] [jsk... [8/8 Active | 5/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib/TwoIntsActionResult.msg | |
]2;[build] 5/37[build - 13.0] [jsk_footstep_msgs - 12.8] [jsk... [8/8 Active | 5/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TwoIntsFeedback.msg | |
]2;[build] 5/37[build - 13.0] [jsk_footstep_msgs - 12.8] [jsk... [8/8 Active | 5/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib/TwoIntsActionFeedback.msg | |
]2;[build] 5/37[build - 13.0] [jsk_footstep_msgs - 12.8] [jsk... [8/8 Active | 5/37 Completed] | |
[jsk_gui_msgs] [100%] Built target jsk_gui_msgs_generate_messages_eus | |
]2;[build] 5/37[build - 13.0] [jsk_footstep_msgs - 12.8] [jsk... [8/8 Active | 5/37 Completed] | |
[roseus] [ 6%] [ 6%] Generating EusLisp manifest code for actionlib | |
]2;[build] 5/37[build - 13.0] [jsk_footstep_msgs - 12.9] [jsk... [8/8 Active | 5/37 Completed] | |
[jsk_gui_msgs] [100%] Built target jsk_gui_msgs_generate_messages | |
]2;[build] 5/37[build - 13.1] [jsk_footstep_msgs - 12.9] [jsk... [8/8 Active | 5/37 Completed] | |
[jsk_footstep_msgs] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 5/37[build - 13.1] [jsk_footstep_msgs - 12.9] [jsk... [8/8 Active | 5/37 Completed] | |
[jsk_network_tools] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 5/37[build - 13.1] [jsk_footstep_msgs - 12.9] [jsk... [8/8 Active | 5/37 Completed] | |
[roseus] [ 6%] [ 6%] Generating EusLisp code from actionlib/TwoIntsResult.msg | |
]2;[build] 5/37[build - 13.1] [jsk_footstep_msgs - 12.9] [jsk... [8/8 Active | 5/37 Completed] | |
[jsk_hark_msgs] <== '/home/garaemon/ros/hydro/build/jsk_hark_msgs/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 5/37[build - 13.1] [jsk_footstep_msgs - 13.0] [jsk... [8/8 Active | 5/37 Completed] | |
Finished <== jsk_hark_msgs [ 12.9 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 6/37[build - 13.2] [jsk_footstep_msgs - 13.0] [jsk... [7/8 Active | 6/37 Completed] | |
Starting ==> sklearn | |
]2;[build] 6/37[build - 13.2] [jsk_footstep_msgs - 13.0] [jsk... [8/8 Active | 6/37 Completed] | |
[sklearn] ==> '/home/garaemon/ros/hydro/build/sklearn/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/sklearn' | |
]2;[build] 6/37[build - 13.3] [jsk_footstep_msgs - 13.1] [jsk... [8/8 Active | 6/37 Completed] | |
[jsk_gui_msgs] <== '/home/garaemon/ros/hydro/build/jsk_gui_msgs/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 6/37[build - 13.3] [jsk_footstep_msgs - 13.1] [jsk... [8/8 Active | 6/37 Completed] | |
Finished <== jsk_gui_msgs [ 13.1 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 7/37[build - 13.4] [jsk_footstep_msgs - 13.2] [jsk... [7/8 Active | 7/37 Completed] | |
Starting ==> view_controller_msgs | |
]2;[build] 7/37[build - 13.4] [jsk_footstep_msgs - 13.2] [jsk... [8/8 Active | 7/37 Completed] | |
[view_controller_msgs] ==> '/home/garaemon/ros/hydro/build/view_controller_msgs/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/view_controller_msgs' | |
]2;[build] 7/37[build - 13.4] [jsk_footstep_msgs - 13.2] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib/TwoIntsActionFeedback.msg | |
]2;[build] 7/37[build - 13.5] [jsk_footstep_msgs - 13.3] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TwoIntsActionFeedback.msg | |
]2;[build] 7/37[build - 13.5] [jsk_footstep_msgs - 13.3] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] Generating EusLisp code from actionlib/TwoIntsFeedback.msg | |
]2;[build] 7/37[build - 13.5] [jsk_footstep_msgs - 13.3] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] [ 6%] Generating EusLisp code from actionlib_msgs/GoalID.msg | |
]2;[build] 7/37[build - 13.6] [jsk_footstep_msgs - 13.4] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib/TwoIntsFeedback.msg | |
]2;[build] 7/37[build - 13.6] [jsk_footstep_msgs - 13.4] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib/TwoIntsActionFeedback.msg | |
]2;[build] 7/37[build - 13.6] [jsk_footstep_msgs - 13.5] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] Generating EusLisp code from actionlib_msgs/GoalStatus.msg | |
]2;[build] 7/37[build - 13.7] [jsk_footstep_msgs - 13.5] [jsk... [8/8 Active | 7/37 Completed] | |
[rviz] <== '/home/garaemon/ros/hydro/build/rviz/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 7/37[build - 13.7] [jsk_footstep_msgs - 13.5] [jsk... [8/8 Active | 7/37 Completed] | |
[rviz] ==> '/home/garaemon/ros/hydro/build/rviz/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/rviz' | |
]2;[build] 7/37[build - 13.7] [jsk_footstep_msgs - 13.6] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] [ 6%] Generating EusLisp code from actionlib/TwoIntsFeedback.msg | |
]2;[build] 7/37[build - 13.8] [jsk_footstep_msgs - 13.6] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp manifest code for actionlib | |
]2;[build] 7/37[build - 13.8] [jsk_footstep_msgs - 13.6] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib_msgs/GoalStatusArray.msg | |
]2;[build] 7/37[build - 13.8] [jsk_footstep_msgs - 13.6] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib_msgs/GoalID.msg | |
]2;[build] 7/37[build - 13.8] [jsk_footstep_msgs - 13.7] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] Generating EusLisp manifest code for actionlib | |
]2;[build] 7/37[build - 13.9] [jsk_footstep_msgs - 13.7] [jsk... [8/8 Active | 7/37 Completed] | |
[sklearn] <== '/home/garaemon/ros/hydro/build/sklearn/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 7/37[build - 13.9] [jsk_footstep_msgs - 13.7] [jsk... [8/8 Active | 7/37 Completed] | |
[sklearn] ==> '/home/garaemon/ros/hydro/build/sklearn/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/sklearn' | |
]2;[build] 7/37[build - 13.9] [jsk_footstep_msgs - 13.7] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp manifest code for actionlib | |
]2;[build] 7/37[build - 13.9] [jsk_footstep_msgs - 13.7] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp manifest code for actionlib | |
]2;[build] 7/37[build - 13.9] [jsk_footstep_msgs - 13.7] [jsk... [8/8 Active | 7/37 Completed] | |
[view_controller_msgs] <== '/home/garaemon/ros/hydro/build/view_controller_msgs/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 7/37[build - 14.0] [jsk_footstep_msgs - 13.8] [jsk... [8/8 Active | 7/37 Completed] | |
[view_controller_msgs] ==> '/home/garaemon/ros/hydro/build/view_controller_msgs/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/view_controller_msgs' | |
]2;[build] 7/37[build - 14.0] [jsk_footstep_msgs - 13.8] [jsk... [8/8 Active | 7/37 Completed] | |
[posedetection_msgs] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 7/37[build - 14.0] [jsk_footstep_msgs - 13.8] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib_msgs/GoalStatus.msg | |
]2;[build] 7/37[build - 14.0] [jsk_footstep_msgs - 13.8] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Built target roseus_c_util | |
]2;[build] 7/37[build - 14.0] [jsk_footstep_msgs - 13.9] [jsk... [8/8 Active | 7/37 Completed] | |
[jsk_footstep_msgs] [100%] Built target jsk_footstep_msgs_generate_messages_eus | |
]2;[build] 7/37[build - 14.1] [jsk_footstep_msgs - 13.9] [jsk... [8/8 Active | 7/37 Completed] | |
[jsk_network_tools] [100%] Built target jsk_network_tools_generate_messages_eus | |
]2;[build] 7/37[build - 14.1] [jsk_footstep_msgs - 13.9] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Generating EusLisp code from actionlib_msgs/GoalStatus.msg | |
]2;[build] 7/37[build - 14.1] [jsk_footstep_msgs - 13.9] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 7/37[build - 14.1] [jsk_footstep_msgs - 14.0] [jsk... [8/8 Active | 7/37 Completed] | |
[jsk_footstep_msgs] [100%] Built target jsk_footstep_msgs_generate_messages | |
]2;[build] 7/37[build - 14.2] [jsk_footstep_msgs - 14.0] [jsk... [8/8 Active | 7/37 Completed] | |
[roseus] [ 6%] [ 6%] Built target std_msgs_generate_messages_cpp | |
]2;[build] 7/37[build - 14.2] [jsk_footstep_msgs - 14.0] [jsk... [8/8 Active | 7/37 Completed] | |
[jsk_network_tools] [100%] Built target jsk_network_tools_generate_messages | |
]2;[build] 7/37[build - 14.2] [jsk_footstep_msgs - 14.1] [jsk... [8/8 Active | 7/37 Completed] | |
[jsk_footstep_msgs] <== '/home/garaemon/ros/hydro/build/jsk_footstep_msgs/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 7/37[build - 14.3] [jsk_footstep_msgs - 14.1] [jsk... [8/8 Active | 7/37 Completed] | |
Finished <== jsk_footstep_msgs [ 14.1 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 8/37[build - 14.4] [jsk_network_tools - 14.1] [jsk... [7/8 Active | 8/37 Completed] | |
Starting ==> ar_pose | |
]2;[build] 8/37[build - 14.4] [jsk_network_tools - 14.1] [jsk... [8/8 Active | 8/37 Completed] | |
[ar_pose] ==> '/home/garaemon/ros/hydro/build/ar_pose/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/ar_pose' | |
]2;[build] 8/37[build - 14.5] [jsk_network_tools - 14.2] [jsk... [8/8 Active | 8/37 Completed] | |
[roseus] Generating EusLisp manifest code for actionlib_msgs | |
]2;[build] 8/37[build - 14.5] [jsk_network_tools - 14.2] [jsk... [8/8 Active | 8/37 Completed] | |
[jsk_network_tools] <== '/home/garaemon/ros/hydro/build/jsk_network_tools/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 8/37[build - 14.5] [jsk_network_tools - 14.3] [jsk... [8/8 Active | 8/37 Completed] | |
Finished <== jsk_network_tools [ 14.3 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 9/37[build - 14.6] [jsk_recognition_msgs - 13.5] [... [7/8 Active | 9/37 Completed] | |
Starting ==> euscollada | |
]2;[build] 9/37[build - 14.6] [jsk_recognition_msgs - 13.5] [... [8/8 Active | 9/37 Completed] | |
[euscollada] ==> '/home/garaemon/ros/hydro/build/euscollada/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/euscollada' | |
]2;[build] 9/37[build - 14.7] [jsk_recognition_msgs - 13.6] [... [8/8 Active | 9/37 Completed] | |
[roseus] [ 6%] Generating EusLisp manifest code for actionlib_msgs | |
]2;[build] 9/37[build - 14.7] [jsk_recognition_msgs - 13.6] [... [8/8 Active | 9/37 Completed] | |
[roseus] [ 6%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 9/37[build - 14.8] [jsk_recognition_msgs - 13.7] [... [8/8 Active | 9/37 Completed] | |
[sklearn] <== '/home/garaemon/ros/hydro/build/sklearn/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 9/37[build - 14.8] [jsk_recognition_msgs - 13.7] [... [8/8 Active | 9/37 Completed] | |
Finished <== sklearn [ 1.6 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 10/37[build - 14.9] [jsk_recognition_msgs - 13.8] ... [7/8 Active | 10/37 Completed] | |
[posedetection_msgs] [100%] Built target posedetection_msgs_generate_messages_eus | |
]2;[build] 10/37[build - 14.9] [jsk_recognition_msgs - 13.8] ... [7/8 Active | 10/37 Completed] | |
[roseus] [ 6%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 10/37[build - 15.0] [jsk_recognition_msgs - 13.9] ... [7/8 Active | 10/37 Completed] | |
[posedetection_msgs] [100%] Built target posedetection_msgs_generate_messages | |
]2;[build] 10/37[build - 15.0] [jsk_recognition_msgs - 13.9] ... [7/8 Active | 10/37 Completed] | |
[roseus] [ 6%] Built target geometry_msgs_generate_messages_py | |
]2;[build] 10/37[build - 15.1] [jsk_recognition_msgs - 14.0] ... [7/8 Active | 10/37 Completed] | |
[posedetection_msgs] <== '/home/garaemon/ros/hydro/build/posedetection_msgs/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 10/37[build - 15.1] [jsk_recognition_msgs - 14.0] ... [7/8 Active | 10/37 Completed] | |
Finished <== posedetection_msgs [ 11.4 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 11/37[build - 15.2] [jsk_recognition_msgs - 14.1] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] [ 16%] [ 33%] [ 33%] [ 33%] Generating EusLisp code from view_controller_msgs/CameraPlacement.msg | |
]2;[build] 11/37[build - 15.2] [jsk_recognition_msgs - 14.1] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 11/37[build - 15.3] [jsk_recognition_msgs - 14.2] ... [6/8 Active | 11/37 Completed] | |
[roseus] [ 6%] Built target std_msgs_generate_messages_py | |
]2;[build] 11/37[build - 15.3] [jsk_recognition_msgs - 14.2] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] Generating EusLisp manifest code for view_controller_msgs | |
]2;[build] 11/37[build - 15.4] [jsk_recognition_msgs - 14.3] ... [6/8 Active | 11/37 Completed] | |
[ar_pose] <== '/home/garaemon/ros/hydro/build/ar_pose/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 11/37[build - 15.4] [jsk_recognition_msgs - 14.3] ... [6/8 Active | 11/37 Completed] | |
[ar_pose] ==> '/home/garaemon/ros/hydro/build/ar_pose/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/ar_pose' | |
]2;[build] 11/37[build - 15.4] [jsk_recognition_msgs - 14.3] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] Built target std_msgs_generate_messages_cpp | |
]2;[build] 11/37[build - 15.4] [jsk_recognition_msgs - 14.3] ... [6/8 Active | 11/37 Completed] | |
[euscollada] <== '/home/garaemon/ros/hydro/build/euscollada/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 11/37[build - 15.5] [jsk_recognition_msgs - 14.4] ... [6/8 Active | 11/37 Completed] | |
[euscollada] ==> '/home/garaemon/ros/hydro/build/euscollada/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/euscollada' | |
]2;[build] 11/37[build - 15.5] [jsk_recognition_msgs - 14.4] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] [ 33%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 11/37[build - 15.5] [jsk_recognition_msgs - 14.5] ... [6/8 Active | 11/37 Completed] | |
[roseus] [ 6%] Generating EusLisp manifest code for actionlib | |
]2;[build] 11/37[build - 15.6] [jsk_recognition_msgs - 14.5] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] [ 33%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 11/37[build - 15.6] [jsk_recognition_msgs - 14.5] ... [6/8 Active | 11/37 Completed] | |
[jsk_recognition_msgs] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 11/37[build - 15.6] [jsk_recognition_msgs - 14.5] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] [ 33%] [ 33%] Built target geometry_msgs_generate_messages_py | |
]2;[build] 11/37[build - 15.7] [jsk_recognition_msgs - 14.6] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] Built target std_msgs_generate_messages_py | |
]2;[build] 11/37[build - 15.7] [jsk_recognition_msgs - 14.6] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] [ 50%] [ 66%] Built target view_controller_msgs_generate_messages_cpp | |
]2;[build] 11/37[build - 15.7] [jsk_recognition_msgs - 14.6] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] Built target view_controller_msgs_generate_messages_lisp | |
]2;[build] 11/37[build - 15.7] [jsk_recognition_msgs - 14.6] ... [6/8 Active | 11/37 Completed] | |
[rviz] [ 56%] Built target rviz | |
]2;[build] 11/37[build - 15.8] [jsk_recognition_msgs - 14.7] ... [6/8 Active | 11/37 Completed] | |
[view_controller_msgs] [100%] Built target view_controller_msgs_generate_messages_py | |
]2;[build] 11/37[build - 15.8] [jsk_recognition_msgs - 14.7] ... [6/8 Active | 11/37 Completed] | |
[rviz] [ 57%] Built target executable | |
]2;[build] 11/37[build - 15.8] [jsk_recognition_msgs - 14.7] ... [6/8 Active | 11/37 Completed] | |
[rviz] [ 57%] [ 58%] Meta target for rviz_sip Python bindings... | |
]2;[build] 11/37[build - 15.8] [jsk_recognition_msgs - 14.7] ... [6/8 Active | 11/37 Completed] | |
[rviz] Built target rviz_image_view | |
]2;[build] 11/37[build - 15.9] [jsk_recognition_msgs - 14.8] ... [6/8 Active | 11/37 Completed] | |
[rviz] [ 59%] Built target librviz_sip | |
]2;[build] 11/37[build - 15.9] [jsk_recognition_msgs - 14.8] ... [6/8 Active | 11/37 Completed] | |
[jsk_recognition_msgs] [100%] Built target jsk_recognition_msgs_generate_messages_eus | |
]2;[build] 11/37[build - 15.9] [jsk_recognition_msgs - 14.8] ... [6/8 Active | 11/37 Completed] | |
[ar_pose] [ 0%] [ 0%] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 11/37[build - 15.9] [jsk_recognition_msgs - 14.8] ... [6/8 Active | 11/37 Completed] | |
[ar_pose] Built target ARToolkit_catkin | |
]2;[build] 11/37[build - 15.9] [jsk_recognition_msgs - 14.8] ... [6/8 Active | 11/37 Completed] | |
[euscollada] [ 50%] [100%] Built target collada2eus | |
]2;[build] 11/37[build - 15.9] [jsk_recognition_msgs - 14.8] ... [6/8 Active | 11/37 Completed] | |
[ar_pose] [ 0%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 11/37[build - 15.9] [jsk_recognition_msgs - 14.8] ... [6/8 Active | 11/37 Completed] | |
[euscollada] Built target collada2eus_urdfmodel | |
]2;[build] 11/37[build - 16.0] [jsk_recognition_msgs - 14.9] ... [6/8 Active | 11/37 Completed] | |
[jsk_recognition_msgs] [100%] Built target jsk_recognition_msgs_generate_messages | |
]2;[build] 11/37[build - 16.0] [jsk_recognition_msgs - 14.9] ... [6/8 Active | 11/37 Completed] | |
[euscollada] <== '/home/garaemon/ros/hydro/build/euscollada/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 11/37[build - 16.0] [jsk_recognition_msgs - 14.9] ... [6/8 Active | 11/37 Completed] | |
Finished <== euscollada [ 1.4 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 12/37[build - 16.0] [jsk_recognition_msgs - 14.9] ... [5/8 Active | 12/37 Completed] | |
[jsk_recognition_msgs] <== '/home/garaemon/ros/hydro/build/jsk_recognition_msgs/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 12/37[build - 16.0] [jsk_recognition_msgs - 14.9] ... [5/8 Active | 12/37 Completed] | |
Finished <== jsk_recognition_msgs [ 14.9 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 13/37[build - 16.1] [roseus - 9.8] [rviz - 3.3] [v... [4/8 Active | 13/37 Completed] | |
[ar_pose] [ 7%] [ 14%] [ 14%] Generating EusLisp code from ar_pose/ARMarkers.msg | |
]2;[build] 13/37[build - 16.1] [roseus - 9.8] [rviz - 3.3] [v... [4/8 Active | 13/37 Completed] | |
[ar_pose] Generating EusLisp code from ar_pose/ARMarker.msg | |
]2;[build] 13/37[build - 16.1] [roseus - 9.8] [rviz - 3.3] [v... [4/8 Active | 13/37 Completed] | |
[ar_pose] [ 21%] Built target geometry_msgs_generate_messages_py | |
]2;[build] 13/37[build - 16.1] [roseus - 9.8] [rviz - 3.3] [v... [4/8 Active | 13/37 Completed] | |
[ar_pose] [ 35%] [ 50%] Built target ar_pose_generate_messages_cpp | |
]2;[build] 13/37[build - 16.1] [roseus - 9.8] [rviz - 3.3] [v... [4/8 Active | 13/37 Completed] | |
[ar_pose] Generating EusLisp manifest code for ar_pose | |
]2;[build] 13/37[build - 16.1] [roseus - 9.9] [rviz - 3.4] [v... [4/8 Active | 13/37 Completed] | |
[ar_pose] Built target ar_pose_generate_messages_lisp | |
]2;[build] 13/37[build - 16.2] [roseus - 9.9] [rviz - 3.4] [v... [4/8 Active | 13/37 Completed] | |
[rviz] [ 64%] Built target rviz_shiboken | |
]2;[build] 13/37[build - 16.2] [roseus - 9.9] [rviz - 3.4] [v... [4/8 Active | 13/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 13/37[build - 16.2] [roseus - 9.9] [rviz - 3.4] [v... [4/8 Active | 13/37 Completed] | |
[ar_pose] [ 71%] Built target ar_pose_generate_messages_py | |
]2;[build] 13/37[build - 16.2] [roseus - 10.0] [rviz - 3.5] [... [4/8 Active | 13/37 Completed] | |
[ar_pose] [ 85%] [100%] Built target ar_multi | |
]2;[build] 13/37[build - 16.3] [roseus - 10.0] [rviz - 3.5] [... [4/8 Active | 13/37 Completed] | |
[ar_pose] Built target ar_single | |
]2;[build] 13/37[build - 16.3] [roseus - 10.0] [rviz - 3.5] [... [4/8 Active | 13/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 13/37[build - 16.3] [roseus - 10.1] [rviz - 3.5] [... [4/8 Active | 13/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 13/37[build - 16.4] [roseus - 10.1] [rviz - 3.6] [... [4/8 Active | 13/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 13/37[build - 16.4] [roseus - 10.1] [rviz - 3.6] [... [4/8 Active | 13/37 Completed] | |
[roseus] [ 6%] Generating EusLisp manifest code for actionlib_msgs | |
]2;[build] 13/37[build - 16.5] [roseus - 10.2] [rviz - 3.7] [... [4/8 Active | 13/37 Completed] | |
[rviz] [100%] Built target default_plugin | |
]2;[build] 13/37[build - 16.5] [roseus - 10.2] [rviz - 3.7] [... [4/8 Active | 13/37 Completed] | |
[rviz] <== '/home/garaemon/ros/hydro/build/rviz/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 13/37[build - 16.6] [roseus - 10.3] [rviz - 3.8] [... [4/8 Active | 13/37 Completed] | |
Finished <== rviz [ 3.8 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 14/37[build - 16.6] [roseus - 10.3] [view_controller_msgs - 3.2] [ar_pose - 2.2] | |
[roseus] [ 6%] Generating EusLisp code from actionlib_msgs/GoalStatus.msg | |
]2;[build] 14/37[build - 16.6] [roseus - 10.3] [view_controller_msgs - 3.2] [ar_pose - 2.2] | |
[roseus] [ 6%] Generating EusLisp manifest code for actionlib_msgs | |
]2;[build] 14/37[build - 16.7] [roseus - 10.4] [view_controller_msgs - 3.3] [ar_pose - 2.3] | |
[roseus] [ 6%] Generating EusLisp code from dynamic_reconfigure/BoolParameter.msg | |
]2;[build] 14/37[build - 16.7] [roseus - 10.4] [view_controller_msgs - 3.3] [ar_pose - 2.3] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 14/37[build - 16.7] [roseus - 10.5] [view_controller_msgs - 3.4] [ar_pose - 2.4] | |
[roseus] [ 6%] Generating EusLisp code from dynamic_reconfigure/BoolParameter.msg | |
]2;[build] 14/37[build - 16.8] [roseus - 10.5] [view_controller_msgs - 3.4] [ar_pose - 2.4] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 14/37[build - 16.8] [roseus - 10.5] [view_controller_msgs - 3.4] [ar_pose - 2.4] | |
[roseus] [ 7%] Generating EusLisp code from dynamic_reconfigure/Config.msg | |
]2;[build] 14/37[build - 16.9] [roseus - 10.6] [view_controller_msgs - 3.5] [ar_pose - 2.5] | |
[roseus] [ 7%] Generating EusLisp code from dynamic_reconfigure/Group.msg | |
]2;[build] 14/37[build - 16.9] [roseus - 10.6] [view_controller_msgs - 3.5] [ar_pose - 2.5] | |
[roseus] [ 7%] Generating EusLisp code from dynamic_reconfigure/IntParameter.msg | |
]2;[build] 14/37[build - 17.0] [roseus - 10.7] [view_controller_msgs - 3.6] [ar_pose - 2.6] | |
[roseus] [ 7%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 14/37[build - 17.0] [roseus - 10.7] [view_controller_msgs - 3.6] [ar_pose - 2.6] | |
[roseus] Built target actionlib_generate_messages_eus | |
]2;[build] 14/37[build - 17.0] [roseus - 10.7] [view_controller_msgs - 3.6] [ar_pose - 2.6] | |
[roseus] [ 7%] Generating EusLisp code from dynamic_reconfigure/SensorLevels.msg | |
]2;[build] 14/37[build - 17.0] [roseus - 10.7] [view_controller_msgs - 3.6] [ar_pose - 2.6] | |
[roseus] [ 8%] Built target actionlib_msgs_generate_messages_eus | |
]2;[build] 14/37[build - 17.1] [roseus - 10.8] [view_controller_msgs - 3.7] [ar_pose - 2.7] | |
[roseus] [ 8%] Generating EusLisp code from dynamic_reconfigure/IntParameter.msg | |
]2;[build] 14/37[build - 17.1] [roseus - 10.8] [view_controller_msgs - 3.7] [ar_pose - 2.7] | |
[roseus] [ 8%] Generating EusLisp code from dynamic_reconfigure/ConfigDescription.msg | |
]2;[build] 14/37[build - 17.1] [roseus - 10.8] [view_controller_msgs - 3.7] [ar_pose - 2.7] | |
[roseus] [ 8%] [ 8%] Generating EusLisp code from dynamic_reconfigure/SensorLevels.msg | |
]2;[build] 14/37[build - 17.2] [roseus - 10.9] [view_controller_msgs - 3.8] [ar_pose - 2.8] | |
[roseus] Generating EusLisp code from dynamic_reconfigure/SensorLevels.msg | |
]2;[build] 14/37[build - 17.2] [roseus - 10.9] [view_controller_msgs - 3.9] [ar_pose - 2.8] | |
[roseus] [ 8%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 14/37[build - 17.3] [roseus - 11.0] [view_controller_msgs - 3.9] [ar_pose - 2.9] | |
[roseus] Generating EusLisp code from dynamic_reconfigure/ConfigDescription.msg | |
]2;[build] 14/37[build - 17.3] [roseus - 11.0] [view_controller_msgs - 3.9] [ar_pose - 2.9] | |
[roseus] [ 8%] [ 8%] Generating EusLisp code from dynamic_reconfigure/DoubleParameter.msg | |
]2;[build] 14/37[build - 17.3] [roseus - 11.0] [view_controller_msgs - 4.0] [ar_pose - 2.9] | |
[roseus] Generating EusLisp code from dynamic_reconfigure/ConfigDescription.msg | |
]2;[build] 14/37[build - 17.4] [roseus - 11.1] [view_controller_msgs - 4.0] [ar_pose - 3.0] | |
Starting ==> pcl_ros | |
]2;[build] 14/37[build - 17.4] [roseus - 11.1] [view_controll... [4/8 Active | 14/37 Completed] | |
[pcl_ros] ==> '/home/garaemon/ros/hydro/build/pcl_ros/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/pcl_ros' | |
]2;[build] 14/37[build - 17.4] [roseus - 11.2] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 9%] [ 9%] [ 9%] Generating EusLisp code from dynamic_reconfigure/Config.msg | |
]2;[build] 14/37[build - 17.5] [roseus - 11.2] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 9%] Generating EusLisp code from dynamic_reconfigure/GroupState.msg | |
]2;[build] 14/37[build - 17.6] [roseus - 11.3] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] Generating EusLisp code from dynamic_reconfigure/DoubleParameter.msg | |
]2;[build] 14/37[build - 17.6] [roseus - 11.3] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] Generating EusLisp code from dynamic_reconfigure/GroupState.msg | |
]2;[build] 14/37[build - 17.7] [roseus - 11.4] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 9%] Generating EusLisp code from dynamic_reconfigure/DoubleParameter.msg | |
]2;[build] 14/37[build - 17.7] [roseus - 11.4] [view_controll... [4/8 Active | 14/37 Completed] | |
[view_controller_msgs] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 14/37[build - 17.8] [roseus - 11.5] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 9%] Generating EusLisp code from dynamic_reconfigure/DoubleParameter.msg | |
]2;[build] 14/37[build - 17.8] [roseus - 11.5] [view_controll... [4/8 Active | 14/37 Completed] | |
[pcl_ros] <== '/home/garaemon/ros/hydro/build/pcl_ros/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 14/37[build - 17.8] [roseus - 11.5] [view_controll... [4/8 Active | 14/37 Completed] | |
[pcl_ros] ==> '/home/garaemon/ros/hydro/build/pcl_ros/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/pcl_ros' | |
]2;[build] 14/37[build - 17.8] [roseus - 11.6] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 9%] [ 9%] Generating EusLisp code from dynamic_reconfigure/ParamDescription.msg | |
]2;[build] 14/37[build - 17.9] [roseus - 11.6] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 9%] Generating EusLisp code from dynamic_reconfigure/ParamDescription.msg | |
]2;[build] 14/37[build - 17.9] [roseus - 11.6] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 10%] Generating EusLisp code from dynamic_reconfigure/StrParameter.msg | |
]2;[build] 14/37[build - 17.9] [roseus - 11.6] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 10%] Generating EusLisp manifest code for actionlib_msgs | |
]2;[build] 14/37[build - 17.9] [roseus - 11.7] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] Generating EusLisp code from dynamic_reconfigure/GroupState.msg | |
]2;[build] 14/37[build - 18.0] [roseus - 11.7] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 10%] [ 10%] Generating EusLisp code from dynamic_reconfigure/Reconfigure.srv | |
]2;[build] 14/37[build - 18.0] [roseus - 11.7] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 10%] Generating EusLisp code from dynamic_reconfigure/GroupState.msg | |
]2;[build] 14/37[build - 18.0] [roseus - 11.7] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] Generating EusLisp code from dynamic_reconfigure/StrParameter.msg | |
]2;[build] 14/37[build - 18.0] [roseus - 11.7] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 10%] Generating EusLisp manifest code for dynamic_reconfigure | |
]2;[build] 14/37[build - 18.0] [roseus - 11.7] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 10%] [ 10%] Generating EusLisp code from dynamic_reconfigure/ParamDescription.msg | |
]2;[build] 14/37[build - 18.1] [roseus - 11.8] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] Generating EusLisp code from dynamic_reconfigure/StrParameter.msg | |
]2;[build] 14/37[build - 18.1] [roseus - 11.8] [view_controll... [4/8 Active | 14/37 Completed] | |
[view_controller_msgs] [100%] Built target view_controller_msgs_generate_messages_eus | |
]2;[build] 14/37[build - 18.1] [roseus - 11.8] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 10%] Generating EusLisp code from geometry_msgs/Point.msg | |
]2;[build] 14/37[build - 18.1] [roseus - 11.9] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 10%] Generating EusLisp code from dynamic_reconfigure/Reconfigure.srv | |
]2;[build] 14/37[build - 18.2] [roseus - 11.9] [view_controll... [4/8 Active | 14/37 Completed] | |
[pcl_ros] [ 0%] [ 0%] Built target dynamic_reconfigure_gencfg | |
]2;[build] 14/37[build - 18.2] [roseus - 11.9] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] [ 10%] [ 10%] Generating EusLisp code from dynamic_reconfigure/Reconfigure.srv | |
]2;[build] 14/37[build - 18.3] [roseus - 12.0] [view_controll... [4/8 Active | 14/37 Completed] | |
[roseus] Generating EusLisp code from dynamic_reconfigure/Reconfigure.srv | |
]2;[build] 14/37[build - 18.3] [roseus - 12.0] [view_controll... [4/8 Active | 14/37 Completed] | |
[pcl_ros] [ 0%] Built target tf2_msgs_generate_messages_cpp | |
]2;[build] 14/37[build - 18.3] [roseus - 12.0] [view_controll... [4/8 Active | 14/37 Completed] | |
[view_controller_msgs] [100%] Built target view_controller_msgs_generate_messages | |
]2;[build] 14/37[build - 18.4] [roseus - 12.1] [view_controll... [4/8 Active | 14/37 Completed] | |
[view_controller_msgs] <== '/home/garaemon/ros/hydro/build/view_controller_msgs/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 14/37[build - 18.4] [roseus - 12.1] [view_controll... [4/8 Active | 14/37 Completed] | |
Finished <== view_controller_msgs [ 5.1 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 15/37[build - 18.4] [roseus - 12.2] [ar_pose - 4.1] [pcl_ros - 1.1] | |
[ar_pose] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 15/37[build - 18.5] [roseus - 12.2] [ar_pose - 4.1] [pcl_ros - 1.1] | |
[pcl_ros] [ 0%] Built target dynamic_reconfigure_generate_messages_lisp | |
]2;[build] 15/37[build - 18.5] [roseus - 12.2] [ar_pose - 4.1] [pcl_ros - 1.1] | |
[pcl_ros] Built target nodelet_generate_messages_lisp | |
]2;[build] 15/37[build - 18.6] [roseus - 12.3] [ar_pose - 4.2] [pcl_ros - 1.2] | |
[roseus] [ 10%] Generating EusLisp manifest code for dynamic_reconfigure | |
]2;[build] 15/37[build - 18.6] [roseus - 12.3] [ar_pose - 4.2] [pcl_ros - 1.3] | |
[roseus] [ 10%] Generating EusLisp code from geometry_msgs/Point32.msg | |
]2;[build] 15/37[build - 18.7] [roseus - 12.4] [ar_pose - 4.3] [pcl_ros - 1.3] | |
[pcl_ros] [ 0%] Built target nodelet_generate_messages_py | |
]2;[build] 15/37[build - 18.7] [roseus - 12.5] [ar_pose - 4.4] [pcl_ros - 1.4] | |
[roseus] [ 10%] Generating EusLisp manifest code for dynamic_reconfigure | |
]2;[build] 15/37[build - 18.8] [roseus - 12.5] [ar_pose - 4.4] [pcl_ros - 1.4] | |
[roseus] [ 10%] Generating EusLisp code from dynamic_reconfigure/BoolParameter.msg | |
]2;[build] 15/37[build - 18.9] [roseus - 12.6] [ar_pose - 4.5] [pcl_ros - 1.5] | |
[pcl_ros] [ 0%] [ 0%] [ 0%] Built target nodelet_generate_messages_cpp | |
]2;[build] 15/37[build - 19.0] [roseus - 12.7] [ar_pose - 4.6] [pcl_ros - 1.6] | |
[pcl_ros] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 15/37[build - 19.0] [roseus - 12.7] [ar_pose - 4.6] [pcl_ros - 1.6] | |
[pcl_ros] Built target dynamic_reconfigure_generate_messages_cpp | |
]2;[build] 15/37[build - 19.0] [roseus - 12.8] [ar_pose - 4.7] [pcl_ros - 1.7] | |
[pcl_ros] [ 0%] Built target pcl_msgs_generate_messages_lisp | |
]2;[build] 15/37[build - 19.1] [roseus - 12.8] [ar_pose - 4.7] [pcl_ros - 1.7] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 15/37[build - 19.1] [roseus - 12.8] [ar_pose - 4.7] [pcl_ros - 1.7] | |
[roseus] [ 10%] [ 10%] Generating EusLisp manifest code for dynamic_reconfigure | |
]2;[build] 15/37[build - 19.1] [roseus - 12.9] [ar_pose - 4.8] [pcl_ros - 1.8] | |
[roseus] Generating EusLisp manifest code for dynamic_reconfigure | |
]2;[build] 15/37[build - 19.2] [roseus - 12.9] [ar_pose - 4.8] [pcl_ros - 1.8] | |
[pcl_ros] [ 0%] Built target std_msgs_generate_messages_cpp | |
]2;[build] 15/37[build - 19.2] [roseus - 12.9] [ar_pose - 4.9] [pcl_ros - 1.9] | |
[pcl_ros] [ 0%] [ 0%] [ 0%] Built target roscpp_generate_messages_cpp | |
]2;[build] 15/37[build - 19.3] [roseus - 13.0] [ar_pose - 4.9] [pcl_ros - 1.9] | |
[pcl_ros] Built target tf_generate_messages_lisp | |
]2;[build] 15/37[build - 19.3] [roseus - 13.1] [ar_pose - 5.0] [pcl_ros - 2.0] | |
[pcl_ros] Built target actionlib_generate_messages_cpp | |
]2;[build] 15/37[build - 19.4] [roseus - 13.1] [ar_pose - 5.0] [pcl_ros - 2.0] | |
[ar_pose] [100%] Built target ar_pose_generate_messages_eus | |
]2;[build] 15/37[build - 19.4] [roseus - 13.2] [ar_pose - 5.1] [pcl_ros - 2.1] | |
[pcl_ros] [ 0%] [ 0%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 15/37[build - 19.5] [roseus - 13.2] [ar_pose - 5.1] [pcl_ros - 2.1] | |
[ar_pose] [100%] Built target ar_pose_generate_messages | |
]2;[build] 15/37[build - 19.5] [roseus - 13.2] [ar_pose - 5.1] [pcl_ros - 2.1] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 15/37[build - 19.5] [roseus - 13.2] [ar_pose - 5.1] [pcl_ros - 2.1] | |
[pcl_ros] [ 0%] [ 0%] Built target pcl_msgs_generate_messages_py | |
]2;[build] 15/37[build - 19.5] [roseus - 13.2] [ar_pose - 5.1] [pcl_ros - 2.1] | |
[ar_pose] <== '/home/garaemon/ros/hydro/build/ar_pose/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 15/37[build - 19.5] [roseus - 13.3] [ar_pose - 5.2] [pcl_ros - 2.2] | |
Finished <== ar_pose [ 5.2 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 16/37[build - 19.6] [roseus - 13.3] [pcl_ros - 2.2] [2/8 Active | 16/37 Completed] | |
[roseus] [ 10%] Generating EusLisp code from geometry_msgs/PointStamped.msg | |
]2;[build] 16/37[build - 19.6] [roseus - 13.3] [pcl_ros - 2.2] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] Built target dynamic_reconfigure_generate_messages_py | |
]2;[build] 16/37[build - 19.6] [roseus - 13.3] [pcl_ros - 2.2] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target std_msgs_generate_messages_py | |
]2;[build] 16/37[build - 19.6] [roseus - 13.3] [pcl_ros - 2.2] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target bond_generate_messages_cpp | |
]2;[build] 16/37[build - 19.6] [roseus - 13.3] [pcl_ros - 2.2] [2/8 Active | 16/37 Completed] | |
[roseus] [ 10%] Generating EusLisp code from geometry_msgs/Polygon.msg | |
]2;[build] 16/37[build - 19.6] [roseus - 13.4] [pcl_ros - 2.3] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] [ 0%] [ 0%] [ 0%] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 16/37[build - 19.7] [roseus - 13.4] [pcl_ros - 2.3] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] Built target actionlib_generate_messages_lisp | |
]2;[build] 16/37[build - 19.7] [roseus - 13.4] [pcl_ros - 2.3] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] Built target pcl_msgs_generate_messages_cpp | |
]2;[build] 16/37[build - 19.7] [roseus - 13.4] [pcl_ros - 2.3] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target rosgraph_msgs_generate_messages_cpp | |
]2;[build] 16/37[build - 19.7] [roseus - 13.4] [pcl_ros - 2.3] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target roscpp_generate_messages_lisp | |
]2;[build] 16/37[build - 19.7] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[roseus] [ 10%] Generating EusLisp code from geometry_msgs/PolygonStamped.msg | |
]2;[build] 16/37[build - 19.7] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target tf_generate_messages_cpp | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[roseus] [ 10%] Generating EusLisp code from geometry_msgs/Pose2D.msg | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[roseus] [ 11%] Generating EusLisp code from geometry_msgs/Point32.msg | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] [ 0%] [ 0%] Built target bond_generate_messages_lisp | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target bond_generate_messages_py | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target roscpp_generate_messages_py | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] [ 0%] Built target tf_generate_messages_py | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target nodelet_topic_tools_gencfg | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[roseus] [ 11%] Generating EusLisp code from geometry_msgs/Pose.msg | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.4] [2/8 Active | 16/37 Completed] | |
[roseus] [ 11%] Built target simple_execute_ref_server | |
]2;[build] 16/37[build - 19.8] [roseus - 13.5] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] [ 0%] [ 0%] [ 0%] Built target rosgraph_msgs_generate_messages_lisp | |
]2;[build] 16/37[build - 19.8] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target topic_tools_generate_messages_lisp | |
]2;[build] 16/37[build - 19.8] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target rosgraph_msgs_generate_messages_py | |
]2;[build] 16/37[build - 19.9] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target topic_tools_generate_messages_py | |
]2;[build] 16/37[build - 19.9] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[roseus] [ 11%] [ 11%] Generating EusLisp code from geometry_msgs/PoseArray.msg | |
]2;[build] 16/37[build - 19.9] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] Built target topic_tools_generate_messages_cpp | |
]2;[build] 16/37[build - 19.9] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[roseus] Generating EusLisp manifest code for dynamic_reconfigure | |
]2;[build] 16/37[build - 19.9] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] [ 0%] [ 0%] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 16/37[build - 19.9] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[roseus] [ 11%] Generating EusLisp code from geometry_msgs/PoseStamped.msg | |
]2;[build] 16/37[build - 19.9] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] Built target tf2_msgs_generate_messages_lisp | |
]2;[build] 16/37[build - 19.9] [roseus - 13.6] [pcl_ros - 2.5] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target sensor_msgs_generate_messages_py | |
]2;[build] 16/37[build - 19.9] [roseus - 13.6] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target actionlib_generate_messages_py | |
]2;[build] 16/37[build - 19.9] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[roseus] [ 11%] Generating EusLisp code from geometry_msgs/PoseWithCovariance.msg | |
]2;[build] 16/37[build - 19.9] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 16/37[build - 19.9] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] [ 0%] Built target tf2_msgs_generate_messages_py | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] [ 0%] Built target geometry_msgs_generate_messages_py | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target actionlib_msgs_generate_messages_cpp | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[roseus] [ 11%] Generating EusLisp code from geometry_msgs/PoseArray.msg | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] Built target actionlib_msgs_generate_messages_lisp | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[roseus] [ 12%] Generating EusLisp code from geometry_msgs/PoseWithCovarianceStamped.msg | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 0%] [ 1%] Built target actionlib_msgs_generate_messages_py | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target convert_pcd_to_image | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 3%] Built target convert_pointcloud_to_image | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.6] [2/8 Active | 16/37 Completed] | |
[roseus] [ 12%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 16/37[build - 20.0] [roseus - 13.7] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 5%] Built target pcd_to_pointcloud | |
]2;[build] 16/37[build - 20.0] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[roseus] [ 12%] Generating EusLisp code from dynamic_reconfigure/ParamDescription.msg | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 29%] Built target pcl_ros_gencfg | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Quaternion.msg | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 31%] Built target pointcloud_to_pcd | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 33%] Built target pcl_ros_tf | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[roseus] [ 12%] Generating EusLisp code from geometry_msgs/QuaternionStamped.msg | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[roseus] [ 12%] Generating EusLisp manifest code for dynamic_reconfigure | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 39%] [ 62%] Built target pcl_ros_surface | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target pcl_ros_features | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.7] [2/8 Active | 16/37 Completed] | |
[roseus] [ 12%] [ 12%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 16/37[build - 20.1] [roseus - 13.8] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Point32.msg | |
]2;[build] 16/37[build - 20.1] [roseus - 13.9] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Transform.msg | |
]2;[build] 16/37[build - 20.1] [roseus - 13.9] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 64%] [ 80%] Built target bag_to_pcd | |
]2;[build] 16/37[build - 20.2] [roseus - 13.9] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
[pcl_ros] Built target pcl_ros_filters | |
]2;[build] 16/37[build - 20.2] [roseus - 13.9] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [ 90%] Built target pcl_ros_io | |
]2;[build] 16/37[build - 20.2] [roseus - 13.9] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
[pcl_ros] [100%] Built target pcl_ros_segmentation | |
]2;[build] 16/37[build - 20.2] [roseus - 13.9] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
[roseus] [ 12%] Generating EusLisp code from geometry_msgs/Pose2D.msg | |
]2;[build] 16/37[build - 20.2] [roseus - 13.9] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
[roseus] [ 12%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 16/37[build - 20.2] [roseus - 13.9] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
[pcl_ros] <== '/home/garaemon/ros/hydro/build/pcl_ros/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 16/37[build - 20.2] [roseus - 13.9] [pcl_ros - 2.8] [2/8 Active | 16/37 Completed] | |
Finished <== pcl_ros [ 2.8 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 17/37[build - 20.2] [roseus - 13.9] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Transform.msg | |
]2;[build] 17/37[build - 20.2] [roseus - 13.9] [1/8 Active | 17/37 Completed] | |
[roseus] [ 12%] Generating EusLisp code from geometry_msgs/TransformStamped.msg | |
]2;[build] 17/37[build - 20.2] [roseus - 13.9] [1/8 Active | 17/37 Completed] | |
[roseus] [ 12%] [ 12%] Generating EusLisp code from geometry_msgs/Transform.msg | |
]2;[build] 17/37[build - 20.2] [roseus - 13.9] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Twist.msg | |
]2;[build] 17/37[build - 20.2] [roseus - 13.9] [1/8 Active | 17/37 Completed] | |
[roseus] [ 13%] Generating EusLisp code from geometry_msgs/TransformStamped.msg | |
]2;[build] 17/37[build - 20.2] [roseus - 13.9] [1/8 Active | 17/37 Completed] | |
[roseus] [ 13%] [ 14%] Generating EusLisp code from geometry_msgs/TwistStamped.msg | |
]2;[build] 17/37[build - 20.2] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 14%] Generating EusLisp code from geometry_msgs/Twist.msg | |
]2;[build] 17/37[build - 20.2] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/PointStamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 14%] [ 14%] Generating EusLisp code from geometry_msgs/PoseWithCovarianceStamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/TwistWithCovariance.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 14%] [ 14%] Generating EusLisp code from geometry_msgs/TwistStamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/TwistWithCovariance.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 14%] [ 16%] Built target dynamic_reconfigure_generate_messages_eus | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] Generating EusLisp code from geometry_msgs/TwistStamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/TwistWithCovariance.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] Generating EusLisp code from geometry_msgs/TwistStamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] Generating EusLisp code from geometry_msgs/TwistWithCovarianceStamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] Generating EusLisp code from geometry_msgs/Vector3.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] [ 16%] Generating EusLisp code from geometry_msgs/TwistWithCovarianceStamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/TwistWithCovarianceStamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] Generating EusLisp code from geometry_msgs/Vector3.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] [ 16%] Generating EusLisp code from geometry_msgs/TwistWithCovarianceStamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Vector3Stamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] [ 16%] [ 16%] Generating EusLisp code from geometry_msgs/Vector3.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.0] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Vector3.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Wrench.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] Generating EusLisp code from geometry_msgs/Vector3Stamped.msg | |
]2;[build] 17/37[build - 20.3] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] [ 16%] [ 16%] [ 16%] Generating EusLisp manifest code for geometry_msgs | |
]2;[build] 17/37[build - 20.4] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Vector3Stamped.msg | |
]2;[build] 17/37[build - 20.4] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/WrenchStamped.msg | |
]2;[build] 17/37[build - 20.4] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Vector3Stamped.msg | |
]2;[build] 17/37[build - 20.4] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] Generating EusLisp code from roscpp/Logger.msg | |
]2;[build] 17/37[build - 20.4] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] Generating EusLisp code from geometry_msgs/Wrench.msg | |
]2;[build] 17/37[build - 20.4] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] Generating EusLisp code from geometry_msgs/Wrench.msg | |
]2;[build] 17/37[build - 20.4] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] [ 16%] Generating EusLisp code from roscpp/Empty.srv | |
]2;[build] 17/37[build - 20.4] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/Wrench.msg | |
]2;[build] 17/37[build - 20.4] [roseus - 14.1] [1/8 Active | 17/37 Completed] | |
[roseus] [ 16%] [ 17%] Generating EusLisp code from roscpp/GetLoggers.srv | |
]2;[build] 17/37[build - 20.4] [roseus - 14.2] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from geometry_msgs/WrenchStamped.msg | |
]2;[build] 17/37[build - 20.5] [roseus - 14.2] [1/8 Active | 17/37 Completed] | |
[roseus] [ 17%] [ 17%] Generating EusLisp code from geometry_msgs/WrenchStamped.msg | |
]2;[build] 17/37[build - 20.5] [roseus - 14.2] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from roscpp/SetLoggerLevel.srv | |
]2;[build] 17/37[build - 20.5] [roseus - 14.2] [1/8 Active | 17/37 Completed] | |
[roseus] [ 17%] Generating EusLisp manifest code for geometry_msgs | |
]2;[build] 17/37[build - 20.5] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 17%] [ 17%] Generating EusLisp manifest code for geometry_msgs | |
]2;[build] 17/37[build - 20.5] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from roscpp/GetLoggers.srv | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 17%] [ 18%] Generating EusLisp manifest code for geometry_msgs | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp manifest code for roscpp | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 18%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from rosgraph_msgs/Clock.msg | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 18%] Generating EusLisp code from roscpp/SetLoggerLevel.srv | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 18%] Generating EusLisp manifest code for roscpp | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 18%] Generating EusLisp code from geometry_msgs/TransformStamped.msg | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 19%] Generating EusLisp manifest code for geometry_msgs | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 19%] Generating EusLisp code from geometry_msgs/QuaternionStamped.msg | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 19%] Generating EusLisp manifest code for geometry_msgs | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] [ 19%] Generating EusLisp code from rosgraph_msgs/Log.msg | |
]2;[build] 17/37[build - 20.6] [roseus - 14.3] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.6] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.6] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 19%] Generating EusLisp manifest code for rosgraph_msgs | |
]2;[build] 17/37[build - 20.6] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.6] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 20%] Generating EusLisp code from roscpp/SetLoggerLevel.srv | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 20%] Generating EusLisp manifest code for roscpp | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 22%] [ 22%] Built target geometry_msgs_generate_messages_eus | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from rosgraph_msgs/Log.msg | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 22%] Generating EusLisp manifest code for roscpp | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 22%] [ 22%] Generating EusLisp manifest code for rosgraph_msgs | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp manifest code for rosgraph_msgs | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 22%] Generating EusLisp code from sensor_msgs/CameraInfo.msg | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 22%] Generating EusLisp code from sensor_msgs/ChannelFloat32.msg | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 22%] Generating EusLisp manifest code for roscpp | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 22%] Generating EusLisp manifest code for rosgraph_msgs | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] [ 22%] Generating EusLisp manifest code for roscpp | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.7] [roseus - 14.4] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.7] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.7] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.7] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] [ 26%] Built target rosgraph_msgs_generate_messages_eus | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] [ 27%] Built target roscpp_generate_messages_eus | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] [ 27%] [ 27%] Generating EusLisp code from sensor_msgs/CameraInfo.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from sensor_msgs/CompressedImage.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] [ 27%] Generating EusLisp code from sensor_msgs/CompressedImage.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] [ 27%] [ 28%] Generating EusLisp code from sensor_msgs/FluidPressure.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from sensor_msgs/FluidPressure.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] [ 28%] [ 28%] Generating EusLisp code from sensor_msgs/Illuminance.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from sensor_msgs/Illuminance.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] [ 28%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from sensor_msgs/Image.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] [ 28%] Generating EusLisp code from sensor_msgs/Imu.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] [ 28%] [ 28%] [ 28%] Generating EusLisp code from sensor_msgs/CompressedImage.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp manifest code for rosgraph_msgs | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] Generating EusLisp code from sensor_msgs/Image.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 20.8] [roseus - 14.5] [1/8 Active | 17/37 Completed] | |
Starting ==> jsk_topic_tools | |
]2;[build] 17/37[build - 20.8] [roseus - 14.6] [jsk_topic_tools - 0.0] | |
[jsk_topic_tools] ==> '/home/garaemon/ros/hydro/build/jsk_topic_tools/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_topic_tools' | |
]2;[build] 17/37[build - 20.8] [roseus - 14.6] [jsk_topic_tools - 0.0] | |
[roseus] [ 28%] Generating EusLisp code from sensor_msgs/JointState.msg | |
]2;[build] 17/37[build - 20.8] [roseus - 14.6] [jsk_topic_tools - 0.0] | |
[roseus] [ 28%] [ 28%] Generating EusLisp code from sensor_msgs/Joy.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.0] | |
[roseus] Generating EusLisp code from sensor_msgs/Image.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.0] | |
[roseus] [ 28%] Generating EusLisp code from sensor_msgs/Imu.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.0] | |
[roseus] [ 28%] Generating EusLisp code from sensor_msgs/JointState.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.0] | |
[roseus] [ 28%] Generating EusLisp code from sensor_msgs/Imu.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.0] | |
[roseus] [ 28%] Generating EusLisp code from sensor_msgs/JoyFeedback.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.0] | |
[jsk_topic_tools] <== '/home/garaemon/ros/hydro/build/jsk_topic_tools/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[jsk_topic_tools] ==> '/home/garaemon/ros/hydro/build/jsk_topic_tools/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_topic_tools' | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[roseus] [ 28%] Generating EusLisp code from sensor_msgs/Joy.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[roseus] [ 28%] [ 28%] Generating EusLisp code from sensor_msgs/JoyFeedback.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[roseus] Generating EusLisp code from sensor_msgs/JoyFeedbackArray.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[roseus] [ 28%] [ 28%] Generating EusLisp code from sensor_msgs/LaserEcho.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[roseus] [ 28%] Generating EusLisp code from sensor_msgs/Joy.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[roseus] [ 28%] Generating EusLisp code from sensor_msgs/JoyFeedbackArray.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[roseus] Generating EusLisp code from sensor_msgs/Image.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[roseus] [ 29%] Generating EusLisp code from sensor_msgs/LaserEcho.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.6] [jsk_topic_tools - 0.1] | |
[roseus] [ 29%] [ 29%] Generating EusLisp code from sensor_msgs/LaserScan.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[roseus] [ 29%] Generating EusLisp code from sensor_msgs/LaserScan.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[roseus] Generating EusLisp code from sensor_msgs/JoyFeedback.msg | |
]2;[build] 17/37[build - 20.9] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[roseus] [ 29%] [ 29%] [ 29%] Generating EusLisp code from sensor_msgs/LaserScan.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[roseus] Generating EusLisp code from sensor_msgs/MagneticField.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[roseus] Generating EusLisp code from sensor_msgs/MultiDOFJointState.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[roseus] [ 29%] [ 29%] [ 29%] Generating EusLisp code from sensor_msgs/LaserScan.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[roseus] Generating EusLisp code from sensor_msgs/MagneticField.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[jsk_topic_tools] [ 1%] [ 3%] [ 5%] [ 7%] Generating EusLisp code from jsk_topic_tools/Update.srv | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[jsk_topic_tools] Generating EusLisp code from jsk_topic_tools/TopicInfo.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[roseus] Generating EusLisp code from sensor_msgs/MagneticField.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.1] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] [ 9%] [ 18%] Generating EusLisp code from jsk_topic_tools/List.srv | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] Built target block | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] [ 32%] Built target hz_measure | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] Built target jsk_topic_tools_generate_messages_cpp | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] [ 41%] Built target jsk_topic_tools_generate_messages_py | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] [ 43%] [ 45%] Built target jsk_topic_tools_generate_messages_lisp | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] Generating EusLisp code from jsk_topic_tools/ChangeTopic.srv | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] Generating EusLisp code from jsk_topic_tools/PassthroughDuration.srv | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[roseus] [ 29%] Generating EusLisp code from sensor_msgs/JoyFeedbackArray.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[roseus] [ 29%] [ 29%] [ 29%] [ 29%] Generating EusLisp code from sensor_msgs/MagneticField.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.7] [jsk_topic_tools - 0.2] | |
[roseus] Generating EusLisp code from sensor_msgs/MultiEchoLaserScan.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[roseus] Generating EusLisp code from sensor_msgs/MultiDOFJointState.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[roseus] Generating EusLisp code from sensor_msgs/MultiEchoLaserScan.msg | |
]2;[build] 17/37[build - 21.0] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] [ 47%] [ 49%] [ 50%] [ 52%] Generating EusLisp manifest code for jsk_topic_tools | |
]2;[build] 17/37[build - 21.0] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] Built target lightweight_throttle | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] Built target passthrough | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] Built target mux | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[roseus] [ 29%] Generating EusLisp code from sensor_msgs/MultiDOFJointState.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[roseus] [ 29%] Generating EusLisp code from sensor_msgs/MultiEchoLaserScan.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[roseus] [ 30%] [ 30%] [ 30%] Generating EusLisp code from sensor_msgs/MultiEchoLaserScan.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[jsk_topic_tools] [ 54%] [ 56%] Built target snapshot | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.2] | |
[roseus] Generating EusLisp code from sensor_msgs/NavSatFix.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[jsk_topic_tools] [ 58%] Built target relay | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[roseus] Generating EusLisp code from sensor_msgs/NavSatFix.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[jsk_topic_tools] [ 60%] Built target transform_merger | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[roseus] [ 30%] Generating EusLisp code from sensor_msgs/NavSatFix.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[jsk_topic_tools] Built target vital_checker | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[roseus] [ 30%] [ 31%] Generating EusLisp code from sensor_msgs/NavSatFix.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[roseus] [ 31%] [ 31%] Generating EusLisp code from sensor_msgs/MultiEchoLaserScan.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[jsk_topic_tools] [ 60%] Built target jsk_topic_tools_gencpp | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/NavSatStatus.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[roseus] Generating EusLisp code from sensor_msgs/NavSatStatus.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/NavSatStatus.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.8] [jsk_topic_tools - 0.3] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/NavSatFix.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[roseus] Generating EusLisp code from sensor_msgs/PointCloud.msg | |
]2;[build] 17/37[build - 21.1] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[jsk_topic_tools] [ 62%] Built target static_transform_pose_stamped | |
]2;[build] 17/37[build - 21.1] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[roseus] [ 31%] [ 31%] Generating EusLisp code from sensor_msgs/NavSatFix.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[roseus] Generating EusLisp code from sensor_msgs/NavSatStatus.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/NavSatStatus.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[jsk_topic_tools] [ 96%] [ 98%] [100%] Built target jsk_topic_tools | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[jsk_topic_tools] Built target topic_buffer_server | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[jsk_topic_tools] Built target topic_buffer_client | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[roseus] [ 31%] [ 31%] Generating EusLisp code from sensor_msgs/PointCloud2.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.3] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/PointCloud.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] Generating EusLisp code from sensor_msgs/PointField.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/PointCloud.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/PointCloud.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] [ 31%] Generating EusLisp code from sensor_msgs/PointCloud.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] Generating EusLisp code from sensor_msgs/NavSatStatus.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/Range.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/PointCloud2.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/RegionOfInterest.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/PointCloud2.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 14.9] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] [ 31%] [ 31%] Generating EusLisp code from sensor_msgs/PointCloud2.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] Generating EusLisp code from sensor_msgs/PointCloud2.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/Range.msg | |
]2;[build] 17/37[build - 21.2] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] Generating EusLisp code from sensor_msgs/RegionOfInterest.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] Generating EusLisp code from sensor_msgs/PointField.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] [ 31%] [ 31%] [ 31%] [ 32%] Generating EusLisp code from sensor_msgs/RelativeHumidity.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] Generating EusLisp code from sensor_msgs/RegionOfInterest.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] Generating EusLisp code from sensor_msgs/Range.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] Generating EusLisp code from sensor_msgs/Range.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] [ 32%] Generating EusLisp code from sensor_msgs/RelativeHumidity.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] [ 32%] [ 32%] Generating EusLisp code from sensor_msgs/RelativeHumidity.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] Generating EusLisp code from sensor_msgs/RelativeHumidity.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.4] | |
[roseus] [ 32%] [ 32%] [ 32%] Generating EusLisp code from sensor_msgs/Temperature.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] Generating EusLisp code from sensor_msgs/Temperature.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] [ 32%] Generating EusLisp code from sensor_msgs/RelativeHumidity.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] Generating EusLisp code from sensor_msgs/TimeReference.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] [ 32%] [ 32%] [ 33%] Generating EusLisp code from sensor_msgs/Temperature.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] Generating EusLisp code from sensor_msgs/Temperature.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] [ 33%] Generating EusLisp code from sensor_msgs/TimeReference.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] Generating EusLisp code from sensor_msgs/SetCameraInfo.srv | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] [ 33%] [ 33%] Generating EusLisp code from sensor_msgs/SetCameraInfo.srv | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] Generating EusLisp code from sensor_msgs/Temperature.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] Generating EusLisp manifest code for sensor_msgs | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] Generating EusLisp manifest code for sensor_msgs | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] [ 34%] Generating EusLisp code from std_msgs/Bool.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.0] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] Generating EusLisp code from sensor_msgs/TimeReference.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] Generating EusLisp code from sensor_msgs/TimeReference.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] Generating EusLisp code from std_msgs/Byte.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] Generating EusLisp code from sensor_msgs/TimeReference.msg | |
]2;[build] 17/37[build - 21.3] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] Generating EusLisp manifest code for sensor_msgs | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] [ 34%] Generating EusLisp code from std_msgs/ByteMultiArray.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] Generating EusLisp manifest code for sensor_msgs | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] Generating EusLisp manifest code for sensor_msgs | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] Generating EusLisp code from std_msgs/Char.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] [ 34%] [ 34%] Generating EusLisp code from std_msgs/ColorRGBA.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.5] | |
[roseus] Generating EusLisp code from std_msgs/Duration.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] [ 35%] Generating EusLisp code from sensor_msgs/PointCloud2.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] [ 35%] [ 35%] Generating EusLisp code from std_msgs/Empty.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] Generating EusLisp code from std_msgs/Float32.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] [ 35%] [ 35%] Generating EusLisp code from std_msgs/Float32MultiArray.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] Generating EusLisp manifest code for sensor_msgs | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] [ 35%] Generating EusLisp code from std_msgs/Float64.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] [ 35%] Generating EusLisp code from std_msgs/Float64MultiArray.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] [ 35%] Generating EusLisp code from std_msgs/Header.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/Int16.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/Int16MultiArray.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[jsk_topic_tools] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 17/37[build - 21.4] [roseus - 15.1] [jsk_topic_tools - 0.6] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/Int32.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/Int32MultiArray.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/Int64.msg | |
]2;[build] 17/37[build - 21.4] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/Int64MultiArray.msg | |
]2;[build] 17/37[build - 21.5] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/Int8.msg | |
]2;[build] 17/37[build - 21.5] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
[jsk_topic_tools] [100%] Built target jsk_topic_tools_generate_messages_eus | |
]2;[build] 17/37[build - 21.5] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/Int8MultiArray.msg | |
]2;[build] 17/37[build - 21.5] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/MultiArrayDimension.msg | |
]2;[build] 17/37[build - 21.5] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
[jsk_topic_tools] [100%] Built target jsk_topic_tools_generate_messages | |
]2;[build] 17/37[build - 21.5] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
[jsk_topic_tools] <== '/home/garaemon/ros/hydro/build/jsk_topic_tools/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 17/37[build - 21.5] [roseus - 15.2] [jsk_topic_tools - 0.6] | |
Finished <== jsk_topic_tools [ 0.6 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] [ 36%] [ 36%] Generating EusLisp code from std_msgs/MultiArrayLayout.msg | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/String.msg | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] [ 36%] [ 36%] Generating EusLisp code from std_msgs/Time.msg | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/Byte.msg | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] [ 36%] [ 36%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/Time.msg | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt16.msg | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] [ 36%] Generating EusLisp code from std_msgs/UInt16.msg | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] [ 37%] Generating EusLisp code from std_msgs/UInt16MultiArray.msg | |
]2;[build] 18/37[build - 21.5] [roseus - 15.2] [1/8 Active | 18/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 18/37[build - 21.5] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 18/37[build - 21.5] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 37%] [ 37%] Generating EusLisp code from std_msgs/UInt16MultiArray.msg | |
]2;[build] 18/37[build - 21.5] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt32.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 37%] Generating EusLisp code from std_msgs/Bool.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 37%] Generating EusLisp code from std_msgs/UInt32.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 37%] Generating EusLisp code from std_msgs/UInt32MultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 37%] [ 37%] Generating EusLisp code from std_msgs/UInt32MultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt64.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 38%] [ 38%] Generating EusLisp code from std_msgs/UInt32MultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 43%] Built target sensor_msgs_generate_messages_eus | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 43%] Generating EusLisp code from std_msgs/UInt32.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt64.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 43%] [ 43%] [ 43%] Generating EusLisp code from std_msgs/UInt64.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt64MultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/ByteMultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 43%] [ 43%] Generating EusLisp code from std_msgs/UInt64MultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt64MultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] [ 43%] [ 43%] Generating EusLisp code from std_msgs/UInt8.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.3] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt64MultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.4] [1/8 Active | 18/37 Completed] | |
[roseus] [ 43%] Generating EusLisp code from std_msgs/UInt32MultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.4] [1/8 Active | 18/37 Completed] | |
[roseus] [ 43%] [ 43%] Generating EusLisp code from std_msgs/UInt8.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.4] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt64MultiArray.msg | |
]2;[build] 18/37[build - 21.6] [roseus - 15.4] [1/8 Active | 18/37 Completed] | |
[roseus] [ 43%] Generating EusLisp code from std_msgs/UInt8.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [1/8 Active | 18/37 Completed] | |
[roseus] [ 43%] [ 43%] [ 43%] Generating EusLisp code from std_msgs/UInt8.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt8MultiArray.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [1/8 Active | 18/37 Completed] | |
[roseus] Generating EusLisp code from std_msgs/UInt8MultiArray.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [1/8 Active | 18/37 Completed] | |
Starting ==> checkerboard_detector | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[checkerboard_detector] ==> '/home/garaemon/ros/hydro/build/checkerboard_detector/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/checkerboard_detector' | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] [ 43%] Generating EusLisp code from std_msgs/UInt8.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] [ 43%] Generating EusLisp code from std_msgs/UInt8MultiArray.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] [ 43%] [ 43%] [ 44%] Generating EusLisp code from std_msgs/UInt8MultiArray.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] Generating EusLisp code from std_msgs/Float32.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] Generating EusLisp code from std_msgs/UInt8MultiArray.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] [ 44%] Generating EusLisp manifest code for std_msgs | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] [ 44%] Generating EusLisp manifest code for std_msgs | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] [ 44%] [ 44%] Generating EusLisp manifest code for std_msgs | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] Generating EusLisp manifest code for std_msgs | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.0] | |
[roseus] [ 44%] Generating EusLisp manifest code for std_msgs | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.1] | |
[checkerboard_detector] <== '/home/garaemon/ros/hydro/build/checkerboard_detector/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.1] | |
[checkerboard_detector] ==> '/home/garaemon/ros/hydro/build/checkerboard_detector/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/checkerboard_detector' | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.1] | |
[roseus] [ 44%] [ 44%] Generating EusLisp code from std_msgs/UInt8MultiArray.msg | |
]2;[build] 18/37[build - 21.7] [roseus - 15.4] [checkerboard_detector - 0.1] | |
[roseus] Generating EusLisp code from std_srvs/Empty.srv | |
]2;[build] 18/37[build - 21.7] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[roseus] [ 44%] Generating EusLisp manifest code for std_srvs | |
]2;[build] 18/37[build - 21.7] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[roseus] [ 44%] [ 44%] Generating EusLisp manifest code for std_msgs | |
]2;[build] 18/37[build - 21.7] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[roseus] Built target roseus_generate_messages_cpp | |
]2;[build] 18/37[build - 21.7] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[roseus] [ 45%] Built target roseus_generate_messages_lisp | |
]2;[build] 18/37[build - 21.8] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[roseus] [ 45%] Generating EusLisp code from tf2_msgs/TF2Error.msg | |
]2;[build] 18/37[build - 21.8] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[checkerboard_detector] [ 33%] [ 66%] Built target checkerboard_detector | |
]2;[build] 18/37[build - 21.8] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[checkerboard_detector] [100%] Built target checkerboard_calibration | |
]2;[build] 18/37[build - 21.8] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[checkerboard_detector] Built target objectdetection_transform_echo | |
]2;[build] 18/37[build - 21.8] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[roseus] [ 45%] Generating EusLisp code from tf2_msgs/TFMessage.msg | |
]2;[build] 18/37[build - 21.8] [roseus - 15.5] [checkerboard_detector - 0.1] | |
[checkerboard_detector] <== '/home/garaemon/ros/hydro/build/checkerboard_detector/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 18/37[build - 21.8] [roseus - 15.5] [checkerboard_detector - 0.1] | |
Finished <== checkerboard_detector [ 0.1 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] [ 45%] Generating EusLisp code from tf2_msgs/LookupTransformAction.msg | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] [ 45%] Generating EusLisp code from tf2_msgs/LookupTransformActionGoal.msg | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] [ 45%] Generating EusLisp code from tf2_msgs/LookupTransformActionResult.msg | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] [ 45%] Generating EusLisp code from tf2_msgs/LookupTransformActionFeedback.msg | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] [ 45%] Generating EusLisp code from tf2_msgs/LookupTransformGoal.msg | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] [ 45%] Generating EusLisp code from tf2_msgs/LookupTransformResult.msg | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] [ 45%] Generating EusLisp code from tf2_msgs/LookupTransformFeedback.msg | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] Generating EusLisp code from tf2_msgs/FrameGraph.srv | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] Generating EusLisp manifest code for tf2_msgs | |
]2;[build] 19/37[build - 21.8] [roseus - 15.5] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 21.8] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 21.8] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] Generating EusLisp code from std_srvs/Empty.srv | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] Generating EusLisp manifest code for std_srvs | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] [ 46%] Generating EusLisp code from tf/tfMessage.msg | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] [ 46%] Generating EusLisp code from std_srvs/Empty.srv | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] Generating EusLisp code from std_srvs/Empty.srv | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] Generating EusLisp manifest code for tf2_msgs | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] Generating EusLisp code from std_srvs/Empty.srv | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] [ 46%] Generating EusLisp manifest code for tf2_msgs | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] Generating EusLisp code from tf/FrameGraph.srv | |
]2;[build] 19/37[build - 21.9] [roseus - 15.6] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] [ 46%] Generating EusLisp manifest code for tf2_msgs | |
]2;[build] 19/37[build - 21.9] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] Generating EusLisp code from tf/tfMessage.msg | |
]2;[build] 19/37[build - 21.9] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] Generating EusLisp manifest code for tf | |
]2;[build] 19/37[build - 22.0] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 46%] Generating EusLisp code from tf/FrameGraph.srv | |
]2;[build] 19/37[build - 22.0] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 55%] Built target std_msgs_generate_messages_eus | |
]2;[build] 19/37[build - 22.0] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 55%] Generating EusLisp code from tf/FrameGraph.srv | |
]2;[build] 19/37[build - 22.0] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 55%] Built target roseus_generate_messages_py | |
]2;[build] 19/37[build - 22.0] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 55%] Generating EusLisp manifest code for tf | |
]2;[build] 19/37[build - 22.0] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 55%] Generating EusLisp code from topic_tools/MuxAdd.srv | |
]2;[build] 19/37[build - 22.0] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 55%] Generating EusLisp code from topic_tools/MuxDelete.srv | |
]2;[build] 19/37[build - 22.0] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 55%] Generating EusLisp code from topic_tools/MuxList.srv | |
]2;[build] 19/37[build - 22.0] [roseus - 15.7] [1/8 Active | 19/37 Completed] | |
[roseus] [ 56%] Generating EusLisp code from topic_tools/MuxSelect.srv | |
]2;[build] 19/37[build - 22.0] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] [ 56%] Generating EusLisp manifest code for topic_tools | |
]2;[build] 19/37[build - 22.0] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.0] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] [ 56%] Generating EusLisp code from visualization_msgs/ImageMarker.msg | |
]2;[build] 19/37[build - 22.1] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] [ 56%] Generating EusLisp code from visualization_msgs/InteractiveMarker.msg | |
]2;[build] 19/37[build - 22.1] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] [ 56%] Generating EusLisp code from visualization_msgs/InteractiveMarkerControl.msg | |
]2;[build] 19/37[build - 22.1] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.1] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.1] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] [ 56%] Generating EusLisp code from visualization_msgs/InteractiveMarkerFeedback.msg | |
]2;[build] 19/37[build - 22.1] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.1] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.1] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] [ 56%] Generating EusLisp code from visualization_msgs/InteractiveMarkerInit.msg | |
]2;[build] 19/37[build - 22.1] [roseus - 15.8] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.1] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 61%] Built target std_srvs_generate_messages_eus | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 61%] Generating EusLisp code from visualization_msgs/InteractiveMarkerPose.msg | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 61%] Generating EusLisp code from roseus/StringStamped.msg | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] Built target tf2_msgs_generate_messages_eus | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] Generating EusLisp code from roseus/String.msg | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] [ 70%] Generating EusLisp code from roseus/AddTwoInts.srv | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] Generating EusLisp code from visualization_msgs/InteractiveMarkerUpdate.msg | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] Generating EusLisp code from visualization_msgs/MarkerArray.msg | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] Generating EusLisp code from visualization_msgs/Marker.msg | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] Generating EusLisp manifest code for tf | |
]2;[build] 19/37[build - 22.2] [roseus - 15.9] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] Generating EusLisp code from roseus/StringString.srv | |
]2;[build] 19/37[build - 22.2] [roseus - 16.0] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] Generating EusLisp manifest code for roseus | |
]2;[build] 19/37[build - 22.2] [roseus - 16.0] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] Generating EusLisp code from visualization_msgs/MenuEntry.msg | |
]2;[build] 19/37[build - 22.2] [roseus - 16.0] [1/8 Active | 19/37 Completed] | |
[roseus] [ 70%] Generating EusLisp manifest code for topic_tools | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [1/8 Active | 19/37 Completed] | |
[roseus] [ 71%] [ 80%] Generating EusLisp manifest code for visualization_msgs | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [1/8 Active | 19/37 Completed] | |
[roseus] Built target tf_generate_messages_eus | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [1/8 Active | 19/37 Completed] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [1/8 Active | 19/37 Completed] | |
Starting ==> image_view2 | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [image_view2 - 0.0] | |
[image_view2] ==> '/home/garaemon/ros/hydro/build/image_view2/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/image_view2' | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [image_view2 - 0.0] | |
[image_view2] <== '/home/garaemon/ros/hydro/build/image_view2/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [image_view2 - 0.0] | |
[image_view2] ==> '/home/garaemon/ros/hydro/build/image_view2/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/image_view2' | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [image_view2 - 0.0] | |
[image_view2] [ 4%] [ 4%] [ 8%] Generating EusLisp code from image_view2/ImageMarker2.msg | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [image_view2 - 0.0] | |
[image_view2] [ 13%] [ 13%] [ 13%] Generating EusLisp code from image_view2/MouseEvent.msg | |
]2;[build] 19/37[build - 22.3] [roseus - 16.0] [image_view2 - 0.1] | |
[image_view2] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 19/37[build - 22.3] [roseus - 16.1] [image_view2 - 0.1] | |
[image_view2] Built target std_msgs_generate_messages_cpp | |
]2;[build] 19/37[build - 22.4] [roseus - 16.1] [image_view2 - 0.1] | |
[image_view2] Built target std_msgs_generate_messages_lisp | |
]2;[build] 19/37[build - 22.4] [roseus - 16.1] [image_view2 - 0.1] | |
[image_view2] [ 17%] [ 17%] Built target image_view2_gencfg | |
]2;[build] 19/37[build - 22.4] [roseus - 16.1] [image_view2 - 0.1] | |
[image_view2] [ 21%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 19/37[build - 22.4] [roseus - 16.1] [image_view2 - 0.1] | |
[image_view2] Generating EusLisp code from image_view2/PointArrayStamped.msg | |
]2;[build] 19/37[build - 22.4] [roseus - 16.1] [image_view2 - 0.1] | |
[image_view2] Generating EusLisp code from image_view2/ChangeMode.srv | |
]2;[build] 19/37[build - 22.4] [roseus - 16.1] [image_view2 - 0.1] | |
[image_view2] [ 26%] [ 26%] Generating EusLisp manifest code for image_view2 | |
]2;[build] 19/37[build - 22.4] [roseus - 16.1] [image_view2 - 0.1] | |
[image_view2] Built target geometry_msgs_generate_messages_py | |
]2;[build] 19/37[build - 22.4] [roseus - 16.1] [image_view2 - 0.2] | |
[image_view2] [ 43%] [ 43%] Built target std_msgs_generate_messages_py | |
]2;[build] 19/37[build - 22.4] [roseus - 16.2] [image_view2 - 0.2] | |
[image_view2] Built target image_view2_generate_messages_cpp | |
]2;[build] 19/37[build - 22.5] [roseus - 16.2] [image_view2 - 0.2] | |
[image_view2] [ 60%] Built target image_view2_generate_messages_lisp | |
]2;[build] 19/37[build - 22.5] [roseus - 16.2] [image_view2 - 0.2] | |
[image_view2] [ 86%] Built target image_view2_generate_messages_py | |
]2;[build] 19/37[build - 22.5] [roseus - 16.2] [image_view2 - 0.2] | |
[image_view2] [ 86%] Built target image_view2_gencpp | |
]2;[build] 19/37[build - 22.5] [roseus - 16.2] [image_view2 - 0.2] | |
[image_view2] [ 91%] Built target points_rectangle_extractor | |
]2;[build] 19/37[build - 22.5] [roseus - 16.2] [image_view2 - 0.2] | |
[image_view2] [100%] Built target image_view2 | |
]2;[build] 19/37[build - 22.5] [roseus - 16.2] [image_view2 - 0.2] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.5] [roseus - 16.2] [image_view2 - 0.2] | |
[roseus] [ 80%] Built target roseus_generate_messages_eus | |
]2;[build] 19/37[build - 22.5] [roseus - 16.2] [image_view2 - 0.2] | |
[roseus] [ 80%] Built target roseus_generate_messages | |
]2;[build] 19/37[build - 22.5] [roseus - 16.2] [image_view2 - 0.3] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.5] [roseus - 16.3] [image_view2 - 0.3] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.6] [roseus - 16.3] [image_view2 - 0.3] | |
[roseus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 19/37[build - 22.6] [roseus - 16.3] [image_view2 - 0.3] | |
[roseus] [ 89%] Built target topic_tools_generate_messages_eus | |
]2;[build] 19/37[build - 22.6] [roseus - 16.3] [image_view2 - 0.3] | |
[roseus] [100%] Built target visualization_msgs_generate_messages_eus | |
]2;[build] 19/37[build - 22.6] [roseus - 16.3] [image_view2 - 0.3] | |
[roseus] <== '/home/garaemon/ros/hydro/build/roseus/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 19/37[build - 22.6] [roseus - 16.3] [image_view2 - 0.3] | |
Finished <== roseus [ 16.3 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 20/37[build - 22.6] [image_view2 - 0.3] [1/8 Active | 20/37 Completed] | |
Starting ==> resized_image_transport | |
]2;[build] 20/37[build - 22.6] [image_view2 - 0.3] [resized_image_transport - 0.0] | |
[resized_image_transport] ==> '/home/garaemon/ros/hydro/build/resized_image_transport/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/resized_image_transport' | |
]2;[build] 20/37[build - 22.6] [image_view2 - 0.4] [resized_image_transport - 0.0] | |
[resized_image_transport] <== '/home/garaemon/ros/hydro/build/resized_image_transport/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 20/37[build - 22.6] [image_view2 - 0.4] [resized_image_transport - 0.0] | |
[resized_image_transport] ==> '/home/garaemon/ros/hydro/build/resized_image_transport/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/resized_image_transport' | |
]2;[build] 20/37[build - 22.7] [image_view2 - 0.4] [resized_image_transport - 0.0] | |
[image_view2] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 20/37[build - 22.7] [image_view2 - 0.4] [resized_image_transport - 0.0] | |
[resized_image_transport] [ 28%] Built target resized_image_transport_gencfg | |
]2;[build] 20/37[build - 22.7] [image_view2 - 0.4] [resized_image_transport - 0.0] | |
[resized_image_transport] [ 42%] [ 57%] Built target image_resizer | |
]2;[build] 20/37[build - 22.7] [image_view2 - 0.4] [resized_image_transport - 0.0] | |
[resized_image_transport] Built target log_polar | |
]2;[build] 20/37[build - 22.7] [image_view2 - 0.4] [resized_image_transport - 0.1] | |
[resized_image_transport] [100%] Built target resized_image_transport | |
]2;[build] 20/37[build - 22.7] [image_view2 - 0.4] [resized_image_transport - 0.1] | |
[resized_image_transport] <== '/home/garaemon/ros/hydro/build/resized_image_transport/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 20/37[build - 22.7] [image_view2 - 0.4] [resized_image_transport - 0.1] | |
Finished <== resized_image_transport [ 0.1 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 21/37[build - 22.7] [image_view2 - 0.4] [1/8 Active | 21/37 Completed] | |
[image_view2] [100%] Built target image_view2_generate_messages_eus | |
]2;[build] 21/37[build - 22.7] [image_view2 - 0.4] [1/8 Active | 21/37 Completed] | |
[image_view2] [100%] Built target image_view2_generate_messages | |
]2;[build] 21/37[build - 22.7] [image_view2 - 0.4] [1/8 Active | 21/37 Completed] | |
[image_view2] <== '/home/garaemon/ros/hydro/build/image_view2/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 21/37[build - 22.7] [image_view2 - 0.4] [1/8 Active | 21/37 Completed] | |
Finished <== image_view2 [ 0.4 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 22/37[build - 22.7] [0/8 Active | 22/37 Completed] | |
Starting ==> drc_com_common | |
]2;[build] 22/37[build - 22.7] [drc_com_common - 0.0] [1/8 Active | 22/37 Completed] | |
[drc_com_common] ==> '/home/garaemon/ros/hydro/build/drc_com_common/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/drc_com_common' | |
]2;[build] 22/37[build - 22.8] [drc_com_common - 0.0] [1/8 Active | 22/37 Completed] | |
Starting ==> jsk_calibration | |
]2;[build] 22/37[build - 22.8] [drc_com_common - 0.1] [jsk_calibration - 0.0] | |
[jsk_calibration] ==> '/home/garaemon/ros/hydro/build/jsk_calibration/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_calibration' | |
]2;[build] 22/37[build - 22.8] [drc_com_common - 0.1] [jsk_calibration - 0.0] | |
Starting ==> jsk_ik_server | |
]2;[build] 22/37[build - 22.8] [drc_com_common - 0.1] [jsk_ca... [3/8 Active | 22/37 Completed] | |
[jsk_ik_server] ==> '/home/garaemon/ros/hydro/build/jsk_ik_server/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_ik_server' | |
]2;[build] 22/37[build - 22.9] [drc_com_common - 0.1] [jsk_ca... [3/8 Active | 22/37 Completed] | |
Starting ==> pr2eus | |
]2;[build] 22/37[build - 22.9] [drc_com_common - 0.1] [jsk_ca... [4/8 Active | 22/37 Completed] | |
[pr2eus] ==> '/home/garaemon/ros/hydro/build/pr2eus/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/pr2eus' | |
]2;[build] 22/37[build - 23.0] [drc_com_common - 0.2] [jsk_ca... [4/8 Active | 22/37 Completed] | |
Starting ==> roseus_smach | |
]2;[build] 22/37[build - 23.0] [drc_com_common - 0.3] [jsk_ca... [5/8 Active | 22/37 Completed] | |
[roseus_smach] ==> '/home/garaemon/ros/hydro/build/roseus_smach/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/roseus_smach' | |
]2;[build] 22/37[build - 23.1] [drc_com_common - 0.3] [jsk_ca... [5/8 Active | 22/37 Completed] | |
[drc_com_common] <== '/home/garaemon/ros/hydro/build/drc_com_common/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 22/37[build - 23.1] [drc_com_common - 0.4] [jsk_ca... [5/8 Active | 22/37 Completed] | |
[drc_com_common] ==> '/home/garaemon/ros/hydro/build/drc_com_common/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/drc_com_common' | |
]2;[build] 22/37[build - 23.2] [drc_com_common - 0.4] [jsk_ca... [5/8 Active | 22/37 Completed] | |
[jsk_ik_server] <== '/home/garaemon/ros/hydro/build/jsk_ik_server/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 22/37[build - 23.2] [drc_com_common - 0.5] [jsk_ca... [5/8 Active | 22/37 Completed] | |
[jsk_ik_server] ==> '/home/garaemon/ros/hydro/build/jsk_ik_server/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_ik_server' | |
]2;[build] 22/37[build - 23.3] [drc_com_common - 0.6] [jsk_ca... [5/8 Active | 22/37 Completed] | |
[pr2eus] <== '/home/garaemon/ros/hydro/build/pr2eus/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 22/37[build - 23.4] [drc_com_common - 0.6] [jsk_ca... [5/8 Active | 22/37 Completed] | |
[pr2eus] ==> '/home/garaemon/ros/hydro/build/pr2eus/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/pr2eus' | |
]2;[build] 22/37[build - 23.4] [drc_com_common - 0.7] [jsk_ca... [5/8 Active | 22/37 Completed] | |
[roseus_smach] <== '/home/garaemon/ros/hydro/build/roseus_smach/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 22/37[build - 23.5] [drc_com_common - 0.7] [jsk_ca... [5/8 Active | 22/37 Completed] | |
[roseus_smach] ==> '/home/garaemon/ros/hydro/build/roseus_smach/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/roseus_smach' | |
]2;[build] 22/37[build - 23.5] [drc_com_common - 0.8] [jsk_ca... [5/8 Active | 22/37 Completed] | |
Starting ==> jsk_rqt_plugins | |
]2;[build] 22/37[build - 23.6] [drc_com_common - 0.9] [jsk_ca... [6/8 Active | 22/37 Completed] | |
[jsk_rqt_plugins] ==> '/home/garaemon/ros/hydro/build/jsk_rqt_plugins/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_rqt_plugins' | |
]2;[build] 22/37[build - 23.7] [drc_com_common - 0.9] [jsk_ca... [6/8 Active | 22/37 Completed] | |
Starting ==> jsk_perception | |
]2;[build] 22/37[build - 23.8] [drc_com_common - 1.0] [jsk_ca... [7/8 Active | 22/37 Completed] | |
[jsk_perception] ==> '/home/garaemon/ros/hydro/build/jsk_perception/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_perception' | |
]2;[build] 22/37[build - 23.8] [drc_com_common - 1.1] [jsk_ca... [7/8 Active | 22/37 Completed] | |
Starting ==> jsk_pcl_ros | |
]2;[build] 22/37[build - 23.9] [drc_com_common - 1.2] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_pcl_ros] ==> '/home/garaemon/ros/hydro/build/jsk_pcl_ros/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_pcl_ros' | |
]2;[build] 22/37[build - 23.9] [drc_com_common - 1.2] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_calibration] <== '/home/garaemon/ros/hydro/build/jsk_calibration/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 22/37[build - 24.0] [drc_com_common - 1.3] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_calibration] ==> '/home/garaemon/ros/hydro/build/jsk_calibration/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_calibration' | |
]2;[build] 22/37[build - 24.1] [drc_com_common - 1.4] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] [ 4%] Built target drc_com_common_gencfg | |
]2;[build] 22/37[build - 24.2] [drc_com_common - 1.4] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] [ 8%] [ 13%] [ 17%] [ 17%] [ 17%] [ 21%] [ 21%] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 22/37[build - 24.2] [drc_com_common - 1.5] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] Built target sensor_msgs_generate_messages_py | |
]2;[build] 22/37[build - 24.3] [drc_com_common - 1.6] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 22/37[build - 24.4] [drc_com_common - 1.6] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_rqt_plugins] <== '/home/garaemon/ros/hydro/build/jsk_rqt_plugins/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 22/37[build - 24.4] [drc_com_common - 1.7] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_rqt_plugins] ==> '/home/garaemon/ros/hydro/build/jsk_rqt_plugins/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_rqt_plugins' | |
]2;[build] 22/37[build - 24.5] [drc_com_common - 1.7] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] Generating EusLisp code from drc_com_common/FC2OCSSmall.msg | |
]2;[build] 22/37[build - 24.5] [drc_com_common - 1.8] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] Generating EusLisp code from drc_com_common/HumanoidJointAngles.msg | |
]2;[build] 22/37[build - 24.6] [drc_com_common - 1.8] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] Generating EusLisp code from drc_com_common/OCS2FCSmall.msg | |
]2;[build] 22/37[build - 24.7] [drc_com_common - 1.9] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] [ 0%] [ 0%] [ 0%] [ 0%] Generating EusLisp code from moveit_msgs/MoveGroupAction.msg | |
]2;[build] 22/37[build - 24.8] [drc_com_common - 2.0] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[roseus_smach] [100%] Generating EusLisp manifest code for roseus_smach | |
]2;[build] 22/37[build - 24.8] [drc_com_common - 2.1] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] [ 26%] Generating EusLisp code from drc_com_common/FC2OCSBasicInfoSmall.msg | |
]2;[build] 22/37[build - 24.9] [drc_com_common - 2.1] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] [ 0%] Generating EusLisp code from moveit_msgs/MoveGroupActionGoal.msg | |
]2;[build] 22/37[build - 24.9] [drc_com_common - 2.2] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_perception] <== '/home/garaemon/ros/hydro/build/jsk_perception/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 22/37[build - 25.0] [drc_com_common - 2.3] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_perception] ==> '/home/garaemon/ros/hydro/build/jsk_perception/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_perception' | |
]2;[build] 22/37[build - 25.1] [drc_com_common - 2.3] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupActionGoal.msg | |
]2;[build] 22/37[build - 25.2] [drc_com_common - 2.4] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] [ 5%] [ 11%] [ 17%] [ 23%] [ 29%] [ 35%] Generating EusLisp code from move_base_msgs/MoveBaseAction.msg | |
]2;[build] 22/37[build - 25.2] [drc_com_common - 2.5] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] [ 0%] Generating EusLisp code from moveit_msgs/MoveGroupAction.msg | |
]2;[build] 22/37[build - 25.3] [drc_com_common - 2.5] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] [ 41%] [ 47%] Generating EusLisp code from move_base_msgs/MoveBaseActionGoal.msg | |
]2;[build] 22/37[build - 25.3] [drc_com_common - 2.6] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] Generating EusLisp code from move_base_msgs/MoveBaseAction.msg | |
]2;[build] 22/37[build - 25.4] [drc_com_common - 2.6] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] Generating EusLisp code from move_base_msgs/MoveBaseActionGoal.msg | |
]2;[build] 22/37[build - 25.4] [drc_com_common - 2.7] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupAction.msg | |
]2;[build] 22/37[build - 25.5] [drc_com_common - 2.8] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] [ 47%] Generating EusLisp code from drc_com_common/FC2OCSLarge.msg | |
]2;[build] 22/37[build - 25.5] [drc_com_common - 2.8] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] Generating EusLisp code from move_base_msgs/MoveBaseActionResult.msg | |
]2;[build] 22/37[build - 25.6] [drc_com_common - 2.9] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] Generating EusLisp code from move_base_msgs/MoveBaseActionResult.msg | |
]2;[build] 22/37[build - 25.7] [drc_com_common - 3.0] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_pcl_ros] <== '/home/garaemon/ros/hydro/build/jsk_pcl_ros/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 22/37[build - 25.7] [drc_com_common - 3.0] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_pcl_ros] ==> '/home/garaemon/ros/hydro/build/jsk_pcl_ros/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_pcl_ros' | |
]2;[build] 22/37[build - 25.8] [drc_com_common - 3.1] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] Built target drc_com_common_generate_messages_cpp | |
]2;[build] 22/37[build - 25.9] [drc_com_common - 3.1] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupAction.msg | |
]2;[build] 22/37[build - 25.9] [drc_com_common - 3.2] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] Generating EusLisp code from move_base_msgs/MoveBaseGoal.msg | |
]2;[build] 22/37[build - 25.9] [drc_com_common - 3.2] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] Generating EusLisp code from move_base_msgs/MoveBaseActionFeedback.msg | |
]2;[build] 22/37[build - 26.0] [drc_com_common - 3.3] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] [ 0%] Generating EusLisp code from moveit_msgs/MoveGroupAction.msg | |
]2;[build] 22/37[build - 26.0] [drc_com_common - 3.3] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] [ 73%] [ 78%] [100%] Built target drc_com_common_generate_messages_py | |
]2;[build] 22/37[build - 26.1] [drc_com_common - 3.3] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] [ 0%] Generating EusLisp code from moveit_msgs/MoveGroupAction.msg | |
]2;[build] 22/37[build - 26.1] [drc_com_common - 3.3] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] Generating EusLisp manifest code for drc_com_common | |
]2;[build] 22/37[build - 26.1] [drc_com_common - 3.4] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[drc_com_common] Built target drc_com_common_generate_messages_lisp | |
]2;[build] 22/37[build - 26.1] [drc_com_common - 3.4] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] [ 0%] [ 1%] Generating EusLisp code from moveit_msgs/MoveGroupActionResult.msg | |
]2;[build] 22/37[build - 26.2] [drc_com_common - 3.4] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupActionGoal.msg | |
]2;[build] 22/37[build - 26.2] [drc_com_common - 3.5] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] [ 52%] [ 58%] Generating EusLisp code from move_base_msgs/MoveBaseResult.msg | |
]2;[build] 22/37[build - 26.3] [drc_com_common - 3.5] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] [ 64%] [ 70%] Generating EusLisp code from move_base_msgs/MoveBaseActionFeedback.msg | |
]2;[build] 22/37[build - 26.3] [drc_com_common - 3.6] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[pr2eus] Generating EusLisp code from move_base_msgs/MoveBaseGoal.msg | |
]2;[build] 22/37[build - 26.3] [drc_com_common - 3.6] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_ik_server] [ 1%] [ 2%] Generating EusLisp code from moveit_msgs/MoveGroupActionGoal.msg | |
]2;[build] 22/37[build - 26.4] [drc_com_common - 3.6] [jsk_ca... [8/8 Active | 22/37 Completed] | |
[jsk_rqt_plugins] <== '/home/garaemon/ros/hydro/build/jsk_rqt_plugins/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 22/37[build - 26.4] [drc_com_common - 3.7] [jsk_ca... [8/8 Active | 22/37 Completed] | |
Finished <== jsk_rqt_plugins [ 2.8 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 23/37[build - 26.4] [drc_com_common - 3.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupActionGoal.msg | |
]2;[build] 23/37[build - 26.4] [drc_com_common - 3.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[pr2eus] [ 76%] [ 82%] Generating EusLisp code from move_base_msgs/MoveBaseFeedback.msg | |
]2;[build] 23/37[build - 26.5] [drc_com_common - 3.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_calibration] [100%] Generating EusLisp manifest code for jsk_calibration | |
]2;[build] 23/37[build - 26.5] [drc_com_common - 3.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[pr2eus] Generating EusLisp manifest code for move_base_msgs | |
]2;[build] 23/37[build - 26.5] [drc_com_common - 3.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 3%] [ 3%] [ 3%] Generating EusLisp code from moveit_msgs/MoveGroupActionResult.msg | |
]2;[build] 23/37[build - 26.6] [drc_com_common - 3.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupActionResult.msg | |
]2;[build] 23/37[build - 26.6] [drc_com_common - 3.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[pr2eus] [ 88%] [ 94%] Generating EusLisp code from move_base_msgs/MoveBaseResult.msg | |
]2;[build] 23/37[build - 26.6] [drc_com_common - 3.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 3%] Generating EusLisp code from moveit_msgs/MoveGroupActionGoal.msg | |
]2;[build] 23/37[build - 26.7] [drc_com_common - 3.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[pr2eus] Generating EusLisp manifest code for move_base_msgs | |
]2;[build] 23/37[build - 26.7] [drc_com_common - 4.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[pr2eus] Generating EusLisp code from move_base_msgs/MoveBaseFeedback.msg | |
]2;[build] 23/37[build - 26.7] [drc_com_common - 4.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 3%] [ 3%] Generating EusLisp code from moveit_msgs/MoveGroupActionResult.msg | |
]2;[build] 23/37[build - 26.7] [drc_com_common - 4.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupActionFeedback.msg | |
]2;[build] 23/37[build - 26.8] [drc_com_common - 4.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupGoal.msg | |
]2;[build] 23/37[build - 26.8] [drc_com_common - 4.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[pr2eus] [100%] Generating EusLisp manifest code for pr2eus | |
]2;[build] 23/37[build - 26.8] [drc_com_common - 4.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 3%] [ 4%] Generating EusLisp code from moveit_msgs/MoveGroupActionFeedback.msg | |
]2;[build] 23/37[build - 26.9] [drc_com_common - 4.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 4%] Generating EusLisp code from moveit_msgs/MoveGroupResult.msg | |
]2;[build] 23/37[build - 26.9] [drc_com_common - 4.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 4%] [ 4%] Generating EusLisp code from moveit_msgs/MoveGroupActionResult.msg | |
]2;[build] 23/37[build - 26.9] [drc_com_common - 4.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupActionFeedback.msg | |
]2;[build] 23/37[build - 26.9] [drc_com_common - 4.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 4%] [ 4%] Generating EusLisp code from moveit_msgs/MoveGroupActionFeedback.msg | |
]2;[build] 23/37[build - 27.0] [drc_com_common - 4.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupActionResult.msg | |
]2;[build] 23/37[build - 27.0] [drc_com_common - 4.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupFeedback.msg | |
]2;[build] 23/37[build - 27.1] [drc_com_common - 4.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 0%] [ 0%] Built target add_color_from_image | |
]2;[build] 23/37[build - 27.1] [drc_com_common - 4.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 0%] [ 1%] Built target attention_clipper | |
]2;[build] 23/37[build - 27.1] [drc_com_common - 4.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 4%] [ 4%] Generating EusLisp code from moveit_msgs/PickupAction.msg | |
]2;[build] 23/37[build - 27.1] [drc_com_common - 4.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target add_point_indices | |
]2;[build] 23/37[build - 27.2] [drc_com_common - 4.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target bilateral_filter | |
]2;[build] 23/37[build - 27.2] [drc_com_common - 4.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 1%] [ 1%] [ 2%] [ 2%] [ 3%] [ 3%] [ 3%] Built target apply_mask_image | |
]2;[build] 23/37[build - 27.2] [drc_com_common - 4.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 4%] [ 4%] Generating EusLisp code from moveit_msgs/PickupActionGoal.msg | |
]2;[build] 23/37[build - 27.3] [drc_com_common - 4.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 4%] [ 4%] Generating EusLisp code from moveit_msgs/MoveGroupGoal.msg | |
]2;[build] 23/37[build - 27.3] [drc_com_common - 4.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupGoal.msg | |
]2;[build] 23/37[build - 27.3] [drc_com_common - 4.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 3%] Built target add_mask_image | |
]2;[build] 23/37[build - 27.3] [drc_com_common - 4.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupActionFeedback.msg | |
]2;[build] 23/37[build - 27.4] [drc_com_common - 4.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupGoal.msg | |
]2;[build] 23/37[build - 27.5] [drc_com_common - 4.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target background_substraction | |
]2;[build] 23/37[build - 27.5] [drc_com_common - 4.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target blob_detector | |
]2;[build] 23/37[build - 27.6] [drc_com_common - 4.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 1%] Built target border_estimator | |
]2;[build] 23/37[build - 27.6] [drc_com_common - 4.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target calc_flow | |
]2;[build] 23/37[build - 27.6] [drc_com_common - 4.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 23/37[build - 27.7] [drc_com_common - 5.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target jsk_recognition_msgs_generate_messages_cpp | |
]2;[build] 23/37[build - 27.8] [drc_com_common - 5.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target std_msgs_generate_messages_cpp | |
]2;[build] 23/37[build - 27.8] [drc_com_common - 5.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 1%] Built target bounding_box_filter | |
]2;[build] 23/37[build - 27.9] [drc_com_common - 5.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 4%] [ 4%] Generating EusLisp code from moveit_msgs/MoveGroupFeedback.msg | |
]2;[build] 23/37[build - 27.9] [drc_com_common - 5.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 4%] Generating EusLisp code from moveit_msgs/MoveGroupActionFeedback.msg | |
]2;[build] 23/37[build - 28.0] [drc_com_common - 5.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 2%] [ 2%] Built target capture_stereo_synchronizer | |
]2;[build] 23/37[build - 28.0] [drc_com_common - 5.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target centroid_publisher | |
]2;[build] 23/37[build - 28.0] [drc_com_common - 5.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupFeedback.msg | |
]2;[build] 23/37[build - 28.0] [drc_com_common - 5.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 2%] Built target cluster_point_indices_decomposer | |
]2;[build] 23/37[build - 28.1] [drc_com_common - 5.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 4%] [ 5%] Generating EusLisp code from moveit_msgs/PickupActionFeedback.msg | |
]2;[build] 23/37[build - 28.1] [drc_com_common - 5.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 5%] [ 5%] [ 5%] Generating EusLisp code from moveit_msgs/PickupActionResult.msg | |
]2;[build] 23/37[build - 28.2] [drc_com_common - 5.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupFeedback.msg | |
]2;[build] 23/37[build - 28.2] [drc_com_common - 5.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 4%] [ 4%] [ 20%] [ 20%] [ 21%] Built target color_histogram | |
]2;[build] 23/37[build - 28.2] [drc_com_common - 5.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveGroupFeedback.msg | |
]2;[build] 23/37[build - 28.3] [drc_com_common - 5.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 23/37[build - 28.3] [drc_com_common - 5.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target jsk_perception_gencfg | |
]2;[build] 23/37[build - 28.3] [drc_com_common - 5.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PickupGoal.msg | |
]2;[build] 23/37[build - 28.3] [drc_com_common - 5.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target color_histogram_label_match | |
]2;[build] 23/37[build - 28.3] [drc_com_common - 5.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target colorize_labels | |
]2;[build] 23/37[build - 28.4] [drc_com_common - 5.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 2%] Built target color_histogram_matcher | |
]2;[build] 23/37[build - 28.4] [drc_com_common - 5.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 5%] [ 5%] [ 6%] Generating EusLisp code from moveit_msgs/PickupAction.msg | |
]2;[build] 23/37[build - 28.4] [drc_com_common - 5.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PickupAction.msg | |
]2;[build] 23/37[build - 28.4] [drc_com_common - 5.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 3%] [ 3%] [ 4%] Built target cluster_point_indices_decomposer_z_axis | |
]2;[build] 23/37[build - 28.5] [drc_com_common - 5.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PickupAction.msg | |
]2;[build] 23/37[build - 28.5] [drc_com_common - 5.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 4%] Built target colorize_distance_from_plane | |
]2;[build] 23/37[build - 28.5] [drc_com_common - 5.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target colorize_random_foreset_result2 | |
]2;[build] 23/37[build - 28.5] [drc_com_common - 5.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target colorize_random_forest_result | |
]2;[build] 23/37[build - 28.6] [drc_com_common - 5.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 6%] [ 6%] Generating EusLisp code from moveit_msgs/PickupActionResult.msg | |
]2;[build] 23/37[build - 28.6] [drc_com_common - 5.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PickupResult.msg | |
]2;[build] 23/37[build - 28.6] [drc_com_common - 5.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 6%] [ 6%] [ 6%] Generating EusLisp code from moveit_msgs/PickupFeedback.msg | |
]2;[build] 23/37[build - 28.6] [drc_com_common - 5.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PickupActionResult.msg | |
]2;[build] 23/37[build - 28.6] [drc_com_common - 5.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PickupActionResult.msg | |
]2;[build] 23/37[build - 28.7] [drc_com_common - 5.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 22%] [ 22%] [ 23%] [ 24%] [ 24%] [ 25%] Built target contour_finder | |
]2;[build] 23/37[build - 28.7] [drc_com_common - 6.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target dilate_mask_image | |
]2;[build] 23/37[build - 28.7] [drc_com_common - 6.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target erode_mask_image | |
]2;[build] 23/37[build - 28.7] [drc_com_common - 6.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target fisheye_to_panorama | |
]2;[build] 23/37[build - 28.8] [drc_com_common - 6.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 6%] [ 6%] Generating EusLisp code from moveit_msgs/PickupResult.msg | |
]2;[build] 23/37[build - 28.8] [drc_com_common - 6.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 4%] Built target convex_connected_voxels | |
]2;[build] 23/37[build - 28.8] [drc_com_common - 6.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target edge_detector | |
]2;[build] 23/37[build - 28.8] [drc_com_common - 6.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 7%] Generating EusLisp code from moveit_msgs/PickupActionResult.msg | |
]2;[build] 23/37[build - 28.8] [drc_com_common - 6.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target grabcut | |
]2;[build] 23/37[build - 28.9] [drc_com_common - 6.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 7%] [ 7%] Generating EusLisp code from moveit_msgs/PickupActionResult.msg | |
]2;[build] 23/37[build - 28.9] [drc_com_common - 6.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 5%] [ 5%] [ 5%] [ 6%] Built target delay_pointcloud | |
]2;[build] 23/37[build - 28.9] [drc_com_common - 6.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 8%] Generating EusLisp code from moveit_msgs/PlaceAction.msg | |
]2;[build] 23/37[build - 28.9] [drc_com_common - 6.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target depth_calibration | |
]2;[build] 23/37[build - 28.9] [drc_com_common - 6.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target depth_image_creator | |
]2;[build] 23/37[build - 29.0] [drc_com_common - 6.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 9%] Generating EusLisp code from moveit_msgs/PlaceActionGoal.msg | |
]2;[build] 23/37[build - 29.0] [drc_com_common - 6.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 10%] Generating EusLisp code from moveit_msgs/PickupFeedback.msg | |
]2;[build] 23/37[build - 29.0] [drc_com_common - 6.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target depth_image_error | |
]2;[build] 23/37[build - 29.0] [drc_com_common - 6.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PickupGoal.msg | |
]2;[build] 23/37[build - 29.1] [drc_com_common - 6.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PickupResult.msg | |
]2;[build] 23/37[build - 29.1] [drc_com_common - 6.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 10%] [ 10%] [ 10%] Generating EusLisp code from moveit_msgs/PickupResult.msg | |
]2;[build] 23/37[build - 29.2] [drc_com_common - 6.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 26%] [ 27%] [ 28%] [ 28%] [ 28%] Built target grid_label | |
]2;[build] 23/37[build - 29.2] [drc_com_common - 6.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target hough_circles | |
]2;[build] 23/37[build - 29.2] [drc_com_common - 6.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceAction.msg | |
]2;[build] 23/37[build - 29.2] [drc_com_common - 6.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target hsv_decomposer | |
]2;[build] 23/37[build - 29.3] [drc_com_common - 6.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 23/37[build - 29.3] [drc_com_common - 6.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PickupResult.msg | |
]2;[build] 23/37[build - 29.3] [drc_com_common - 6.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target jsk_recognition_msgs_generate_messages_lisp | |
]2;[build] 23/37[build - 29.3] [drc_com_common - 6.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 10%] [ 10%] Generating EusLisp code from moveit_msgs/PlaceAction.msg | |
]2;[build] 23/37[build - 29.4] [drc_com_common - 6.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 6%] [ 6%] [ 7%] [ 7%] Built target edge_depth_refinement | |
]2;[build] 23/37[build - 29.4] [drc_com_common - 6.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 11%] Generating EusLisp code from moveit_msgs/PlaceAction.msg | |
]2;[build] 23/37[build - 29.4] [drc_com_common - 6.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target environment_plane_modeling | |
]2;[build] 23/37[build - 29.4] [drc_com_common - 6.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 11%] Generating EusLisp code from moveit_msgs/PlaceActionResult.msg | |
]2;[build] 23/37[build - 29.4] [drc_com_common - 6.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 8%] Built target edgebased_cube_finder | |
]2;[build] 23/37[build - 29.4] [drc_com_common - 6.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 11%] Generating EusLisp code from moveit_msgs/PlaceActionGoal.msg | |
]2;[build] 23/37[build - 29.5] [drc_com_common - 6.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target euclidean_clustering | |
]2;[build] 23/37[build - 29.5] [drc_com_common - 6.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target feature_registration | |
]2;[build] 23/37[build - 29.5] [drc_com_common - 6.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 28%] [ 28%] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 23/37[build - 29.6] [drc_com_common - 6.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceAction.msg | |
]2;[build] 23/37[build - 29.6] [drc_com_common - 6.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 28%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 23/37[build - 29.7] [drc_com_common - 6.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 28%] Built target geometry_msgs_generate_messages_py | |
]2;[build] 23/37[build - 29.7] [drc_com_common - 7.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target jsk_recognition_msgs_generate_messages_py | |
]2;[build] 23/37[build - 29.8] [drc_com_common - 7.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 11%] [ 11%] [ 11%] Generating EusLisp code from moveit_msgs/PlaceActionResult.msg | |
]2;[build] 23/37[build - 29.9] [drc_com_common - 7.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceActionGoal.msg | |
]2;[build] 23/37[build - 29.9] [drc_com_common - 7.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceAction.msg | |
]2;[build] 23/37[build - 29.9] [drc_com_common - 7.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 12%] [ 12%] Generating EusLisp code from moveit_msgs/PlaceActionResult.msg | |
]2;[build] 23/37[build - 29.9] [drc_com_common - 7.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceActionResult.msg | |
]2;[build] 23/37[build - 30.0] [drc_com_common - 7.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 12%] [ 12%] Generating EusLisp code from moveit_msgs/PlaceActionFeedback.msg | |
]2;[build] 23/37[build - 30.0] [drc_com_common - 7.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 28%] [ 28%] [ 28%] [ 28%] Built target sensor_msgs_generate_messages_py | |
]2;[build] 23/37[build - 30.0] [drc_com_common - 7.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 12%] Generating EusLisp code from moveit_msgs/PlaceActionResult.msg | |
]2;[build] 23/37[build - 30.1] [drc_com_common - 7.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceActionFeedback.msg | |
]2;[build] 23/37[build - 30.1] [drc_com_common - 7.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 8%] [ 8%] [ 9%] [ 9%] [ 9%] [ 9%] Built target find_object_on_plane | |
]2;[build] 23/37[build - 30.1] [drc_com_common - 7.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target std_msgs_generate_messages_py | |
]2;[build] 23/37[build - 30.1] [drc_com_common - 7.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target fisheye_sphere_publisher | |
]2;[build] 23/37[build - 30.2] [drc_com_common - 7.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target jsk_recognition_msgs_generate_messages_eus | |
]2;[build] 23/37[build - 30.2] [drc_com_common - 7.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target geometric_consistency_grouping | |
]2;[build] 23/37[build - 30.2] [drc_com_common - 7.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target grid_sampler | |
]2;[build] 23/37[build - 30.2] [drc_com_common - 7.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target lab_decomposer | |
]2;[build] 23/37[build - 30.3] [drc_com_common - 7.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target handle_estimator | |
]2;[build] 23/37[build - 30.3] [drc_com_common - 7.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 12%] [ 12%] [ 12%] Generating EusLisp code from moveit_msgs/PlaceActionFeedback.msg | |
]2;[build] 23/37[build - 30.3] [drc_com_common - 7.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target hinted_handle_estimator | |
]2;[build] 23/37[build - 30.4] [drc_com_common - 7.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 12%] Generating EusLisp code from moveit_msgs/PlaceActionFeedback.msg | |
]2;[build] 23/37[build - 30.4] [drc_com_common - 7.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[drc_com_common] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 23/37[build - 30.4] [drc_com_common - 7.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 29%] Built target linemod | |
]2;[build] 23/37[build - 30.5] [drc_com_common - 7.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceActionFeedback.msg | |
]2;[build] 23/37[build - 30.5] [drc_com_common - 7.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceActionResult.msg | |
]2;[build] 23/37[build - 30.5] [drc_com_common - 7.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 12%] Generating EusLisp code from moveit_msgs/PlaceActionFeedback.msg | |
]2;[build] 23/37[build - 30.5] [drc_com_common - 7.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 12%] [ 13%] Generating EusLisp code from moveit_msgs/PlaceGoal.msg | |
]2;[build] 23/37[build - 30.5] [drc_com_common - 7.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 30%] [ 31%] Built target mask_image_generator | |
]2;[build] 23/37[build - 30.6] [drc_com_common - 7.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceGoal.msg | |
]2;[build] 23/37[build - 30.6] [drc_com_common - 7.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 31%] Built target mask_image_to_rect | |
]2;[build] 23/37[build - 30.6] [drc_com_common - 7.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 32%] Built target mask_image_to_roi | |
]2;[build] 23/37[build - 30.7] [drc_com_common - 7.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target multiply_mask_image | |
]2;[build] 23/37[build - 30.7] [drc_com_common - 8.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 10%] [ 10%] [ 10%] [ 11%] [ 11%] [ 11%] Built target hinted_plane_detector | |
]2;[build] 23/37[build - 30.7] [drc_com_common - 8.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 13%] [ 14%] Generating EusLisp code from moveit_msgs/PlaceGoal.msg | |
]2;[build] 23/37[build - 30.8] [drc_com_common - 8.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 14%] Generating EusLisp code from moveit_msgs/PlaceResult.msg | |
]2;[build] 23/37[build - 30.8] [drc_com_common - 8.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[roseus_smach] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 23/37[build - 30.8] [drc_com_common - 8.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 14%] Generating EusLisp code from moveit_msgs/PlaceGoal.msg | |
]2;[build] 23/37[build - 30.8] [drc_com_common - 8.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 15%] Generating EusLisp code from moveit_msgs/PlaceGoal.msg | |
]2;[build] 23/37[build - 30.9] [drc_com_common - 8.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[pr2eus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 23/37[build - 30.9] [drc_com_common - 8.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target hinted_stick_finder | |
]2;[build] 23/37[build - 30.9] [drc_com_common - 8.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceResult.msg | |
]2;[build] 23/37[build - 30.9] [drc_com_common - 8.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target hsi_color_filter | |
]2;[build] 23/37[build - 30.9] [drc_com_common - 8.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target icp_registration | |
]2;[build] 23/37[build - 31.0] [drc_com_common - 8.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target image_rotate | |
]2;[build] 23/37[build - 31.0] [drc_com_common - 8.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 15%] [ 15%] Generating EusLisp code from moveit_msgs/PlaceResult.msg | |
]2;[build] 23/37[build - 31.1] [drc_com_common - 8.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceGoal.msg | |
]2;[build] 23/37[build - 31.1] [drc_com_common - 8.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target incremental_model_registration | |
]2;[build] 23/37[build - 31.1] [drc_com_common - 8.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 15%] [ 15%] Generating EusLisp code from moveit_msgs/PlaceResult.msg | |
]2;[build] 23/37[build - 31.1] [drc_com_common - 8.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceResult.msg | |
]2;[build] 23/37[build - 31.2] [drc_com_common - 8.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 15%] [ 15%] Generating EusLisp code from moveit_msgs/PlaceResult.msg | |
]2;[build] 23/37[build - 31.2] [drc_com_common - 8.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[pr2eus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 23/37[build - 31.3] [drc_com_common - 8.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_calibration] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 23/37[build - 31.3] [drc_com_common - 8.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] [ 33%] [ 34%] [ 35%] [ 36%] [ 36%] Built target oriented_gradient | |
]2;[build] 23/37[build - 31.3] [drc_com_common - 8.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 15%] [ 15%] Generating EusLisp code from moveit_msgs/PlaceFeedback.msg | |
]2;[build] 23/37[build - 31.3] [drc_com_common - 8.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target polygon_to_mask_image | |
]2;[build] 23/37[build - 31.4] [drc_com_common - 8.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceFeedback.msg | |
]2;[build] 23/37[build - 31.4] [drc_com_common - 8.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target project_image_point | |
]2;[build] 23/37[build - 31.4] [drc_com_common - 8.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 16%] [ 16%] Generating EusLisp code from moveit_msgs/PlaceFeedback.msg | |
]2;[build] 23/37[build - 31.4] [drc_com_common - 8.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target rect_to_mask_image | |
]2;[build] 23/37[build - 31.5] [drc_com_common - 8.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[pr2eus] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 23/37[build - 31.6] [drc_com_common - 8.8] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[drc_com_common] [100%] Built target drc_com_common_generate_messages_eus | |
]2;[build] 23/37[build - 31.6] [drc_com_common - 8.9] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/AllowedCollisionEntry.msg | |
]2;[build] 23/37[build - 31.7] [drc_com_common - 9.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_perception] Built target rect_to_roi | |
]2;[build] 23/37[build - 31.8] [drc_com_common - 9.0] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] [ 11%] [ 12%] [ 12%] [ 12%] [ 12%] Built target joint_state_static_filter | |
]2;[build] 23/37[build - 31.8] [drc_com_common - 9.1] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceFeedback.msg | |
]2;[build] 23/37[build - 31.9] [drc_com_common - 9.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target intermittent_image_annotator | |
]2;[build] 23/37[build - 32.0] [drc_com_common - 9.2] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target jsk_footstep_msgs_generate_messages_cpp | |
]2;[build] 23/37[build - 32.0] [drc_com_common - 9.3] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target jsk_recognition_msgs_generate_messages_cpp | |
]2;[build] 23/37[build - 32.1] [drc_com_common - 9.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_pcl_ros] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 23/37[build - 32.2] [drc_com_common - 9.4] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[drc_com_common] [100%] Built target drc_com_common_generate_messages | |
]2;[build] 23/37[build - 32.2] [drc_com_common - 9.5] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[jsk_ik_server] [ 16%] [ 16%] Generating EusLisp code from moveit_msgs/PlaceFeedback.msg | |
]2;[build] 23/37[build - 32.3] [drc_com_common - 9.6] [jsk_ca... [7/8 Active | 23/37 Completed] | |
[drc_com_common] <== '/home/garaemon/ros/hydro/build/drc_com_common/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 23/37[build - 32.4] [drc_com_common - 9.7] [jsk_ca... [7/8 Active | 23/37 Completed] | |
Finished <== drc_com_common [ 9.7 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 24/37[build - 32.5] [jsk_calibration - 9.7] [jsk_i... [6/8 Active | 24/37 Completed] | |
[jsk_perception] [ 37%] Built target rgb_decomposer | |
]2;[build] 24/37[build - 32.5] [jsk_calibration - 9.8] [jsk_i... [6/8 Active | 24/37 Completed] | |
[jsk_ik_server] [ 16%] Generating EusLisp code from moveit_msgs/PlaceFeedback.msg | |
]2;[build] 24/37[build - 32.6] [jsk_calibration - 9.8] [jsk_i... [6/8 Active | 24/37 Completed] | |
[jsk_ik_server] [ 16%] [ 16%] Generating EusLisp code from moveit_msgs/AllowedCollisionEntry.msg | |
]2;[build] 24/37[build - 32.6] [jsk_calibration - 9.8] [jsk_i... [6/8 Active | 24/37 Completed] | |
[jsk_perception] [ 38%] [ 38%] [ 39%] Built target roi_to_mask_image | |
]2;[build] 24/37[build - 32.7] [jsk_calibration - 9.9] [jsk_i... [6/8 Active | 24/37 Completed] | |
[jsk_perception] Built target roi_to_rect | |
]2;[build] 24/37[build - 32.7] [jsk_calibration - 9.9] [jsk_i... [6/8 Active | 24/37 Completed] | |
[jsk_ik_server] [ 16%] [ 16%] Generating EusLisp code from moveit_msgs/AllowedCollisionMatrix.msg | |
]2;[build] 24/37[build - 32.7] [jsk_calibration - 9.9] [jsk_i... [6/8 Active | 24/37 Completed] | |
[jsk_ik_server] [ 16%] Generating EusLisp code from moveit_msgs/AllowedCollisionEntry.msg | |
]2;[build] 24/37[build - 32.7] [jsk_calibration - 10.0] [jsk_... [6/8 Active | 24/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/AllowedCollisionEntry.msg | |
]2;[build] 24/37[build - 32.8] [jsk_calibration - 10.0] [jsk_... [6/8 Active | 24/37 Completed] | |
[roseus_smach] [100%] Built target roseus_smach_generate_messages_eus | |
]2;[build] 24/37[build - 32.8] [jsk_calibration - 10.0] [jsk_... [6/8 Active | 24/37 Completed] | |
[jsk_perception] Built target single_channel_histogram | |
]2;[build] 24/37[build - 32.8] [jsk_calibration - 10.1] [jsk_... [6/8 Active | 24/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/AllowedCollisionMatrix.msg | |
]2;[build] 24/37[build - 32.9] [jsk_calibration - 10.1] [jsk_... [6/8 Active | 24/37 Completed] | |
[jsk_pcl_ros] [ 12%] [ 12%] Built target pcl_msgs_generate_messages_cpp | |
]2;[build] 24/37[build - 32.9] [jsk_calibration - 10.1] [jsk_... [6/8 Active | 24/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/AllowedCollisionEntry.msg | |
]2;[build] 24/37[build - 32.9] [jsk_calibration - 10.1] [jsk_... [6/8 Active | 24/37 Completed] | |
[roseus_smach] <== '/home/garaemon/ros/hydro/build/roseus_smach/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 24/37[build - 32.9] [jsk_calibration - 10.2] [jsk_... [6/8 Active | 24/37 Completed] | |
Finished <== roseus_smach [ 10.0 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 25/37[build - 33.0] [jsk_calibration - 10.2] [jsk_... [5/8 Active | 25/37 Completed] | |
[pr2eus] [100%] Built target move_base_msgs_generate_messages_eus | |
]2;[build] 25/37[build - 33.0] [jsk_calibration - 10.2] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] [ 27%] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 25/37[build - 33.0] [jsk_calibration - 10.3] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_perception] [ 40%] Built target skeletonization | |
]2;[build] 25/37[build - 33.1] [jsk_calibration - 10.3] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] [ 27%] Built target jsk_pcl_ros_gencfg | |
]2;[build] 25/37[build - 33.1] [jsk_calibration - 10.3] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] Built target jsk_footstep_msgs_generate_messages_lisp | |
]2;[build] 25/37[build - 33.1] [jsk_calibration - 10.3] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 16%] [ 17%] Generating EusLisp code from moveit_msgs/AllowedCollisionEntry.msg | |
]2;[build] 25/37[build - 33.1] [jsk_calibration - 10.4] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 17%] Generating EusLisp code from moveit_msgs/AttachedCollisionObject.msg | |
]2;[build] 25/37[build - 33.2] [jsk_calibration - 10.4] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/AllowedCollisionMatrix.msg | |
]2;[build] 25/37[build - 33.2] [jsk_calibration - 10.4] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 17%] [ 18%] [ 18%] [ 18%] Generating EusLisp code from moveit_msgs/AllowedCollisionMatrix.msg | |
]2;[build] 25/37[build - 33.2] [jsk_calibration - 10.4] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_perception] [ 41%] [ 42%] [ 42%] [ 43%] Built target slic_super_pixels | |
]2;[build] 25/37[build - 33.3] [jsk_calibration - 10.5] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/CollisionObject.msg | |
]2;[build] 25/37[build - 33.3] [jsk_calibration - 10.5] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 19%] Generating EusLisp code from moveit_msgs/BoundingVolume.msg | |
]2;[build] 25/37[build - 33.3] [jsk_calibration - 10.5] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_perception] Built target sparse_image_decoder | |
]2;[build] 25/37[build - 33.3] [jsk_calibration - 10.6] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/AttachedCollisionObject.msg | |
]2;[build] 25/37[build - 33.3] [jsk_calibration - 10.6] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] [ 27%] [ 27%] [ 27%] Built target pcl_msgs_generate_messages_lisp | |
]2;[build] 25/37[build - 33.4] [jsk_calibration - 10.6] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/AllowedCollisionMatrix.msg | |
]2;[build] 25/37[build - 33.4] [jsk_calibration - 10.6] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 25/37[build - 33.4] [jsk_calibration - 10.6] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_perception] [ 44%] Built target sliding_window_object_detector | |
]2;[build] 25/37[build - 33.4] [jsk_calibration - 10.7] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_perception] Built target snake_segmentation | |
]2;[build] 25/37[build - 33.5] [jsk_calibration - 10.7] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_perception] Built target sparse_image_encoder | |
]2;[build] 25/37[build - 33.5] [jsk_calibration - 10.7] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] [ 27%] [ 27%] Built target jsk_recognition_msgs_generate_messages_lisp | |
]2;[build] 25/37[build - 33.5] [jsk_calibration - 10.7] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 25/37[build - 33.5] [jsk_calibration - 10.8] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] Built target jsk_recognition_msgs_generate_messages_eus | |
]2;[build] 25/37[build - 33.6] [jsk_calibration - 10.8] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 19%] [ 19%] [ 19%] Generating EusLisp code from moveit_msgs/AllowedCollisionMatrix.msg | |
]2;[build] 25/37[build - 33.6] [jsk_calibration - 10.8] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/AttachedCollisionObject.msg | |
]2;[build] 25/37[build - 33.6] [jsk_calibration - 10.8] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/AttachedCollisionObject.msg | |
]2;[build] 25/37[build - 33.6] [jsk_calibration - 10.9] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_perception] [ 44%] [ 45%] Built target unapply_mask_image | |
]2;[build] 25/37[build - 33.7] [jsk_calibration - 10.9] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_perception] Built target ycc_decomposer | |
]2;[build] 25/37[build - 33.7] [jsk_calibration - 10.9] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 19%] [ 19%] [ 19%] Generating EusLisp code from moveit_msgs/ConstraintEvalResult.msg | |
]2;[build] 25/37[build - 33.7] [jsk_calibration - 10.9] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 20%] Generating EusLisp code from moveit_msgs/AttachedCollisionObject.msg | |
]2;[build] 25/37[build - 33.7] [jsk_calibration - 11.0] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/BoundingVolume.msg | |
]2;[build] 25/37[build - 33.8] [jsk_calibration - 11.0] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/BoundingVolume.msg | |
]2;[build] 25/37[build - 33.8] [jsk_calibration - 11.0] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 20%] Generating EusLisp code from moveit_msgs/ConstraintEvalResult.msg | |
]2;[build] 25/37[build - 33.8] [jsk_calibration - 11.0] [jsk_... [5/8 Active | 25/37 Completed] | |
[pr2eus] [100%] Built target pr2eus_generate_messages_eus | |
]2;[build] 25/37[build - 33.8] [jsk_calibration - 11.1] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_calibration] [100%] Built target jsk_calibration_generate_messages_eus | |
]2;[build] 25/37[build - 33.9] [jsk_calibration - 11.1] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] [ 27%] [ 27%] [ 27%] [ 27%] [ 27%] Built target jsk_footstep_msgs_generate_messages_eus | |
]2;[build] 25/37[build - 33.9] [jsk_calibration - 11.2] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] Built target jsk_footstep_msgs_generate_messages_py | |
]2;[build] 25/37[build - 33.9] [jsk_calibration - 11.2] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 20%] [ 20%] Generating EusLisp code from moveit_msgs/ConstraintEvalResult.msg | |
]2;[build] 25/37[build - 34.0] [jsk_calibration - 11.2] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_pcl_ros] [ 27%] Built target pcl_msgs_generate_messages_py | |
]2;[build] 25/37[build - 34.0] [jsk_calibration - 11.2] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_ik_server] [ 21%] Generating EusLisp code from moveit_msgs/BoundingVolume.msg | |
]2;[build] 25/37[build - 34.0] [jsk_calibration - 11.2] [jsk_... [5/8 Active | 25/37 Completed] | |
[jsk_calibration] <== '/home/garaemon/ros/hydro/build/jsk_calibration/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 25/37[build - 34.0] [jsk_calibration - 11.3] [jsk_... [5/8 Active | 25/37 Completed] | |
Finished <== jsk_calibration [ 11.3 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 26/37[build - 34.1] [jsk_ik_server - 11.2] [pr2eus... [4/8 Active | 26/37 Completed] | |
[jsk_pcl_ros] Built target jsk_recognition_msgs_generate_messages_py | |
]2;[build] 26/37[build - 34.1] [jsk_ik_server - 11.3] [pr2eus... [4/8 Active | 26/37 Completed] | |
[jsk_perception] [ 50%] [ 51%] [ 51%] [ 56%] [ 57%] [ 58%] Built target jsk_perception_generate_messages_cpp | |
]2;[build] 26/37[build - 34.1] [jsk_ik_server - 11.3] [pr2eus... [4/8 Active | 26/37 Completed] | |
[jsk_pcl_ros] Built target sensor_msgs_generate_messages_py | |
]2;[build] 26/37[build - 34.1] [jsk_ik_server - 11.3] [pr2eus... [4/8 Active | 26/37 Completed] | |
[jsk_perception] Generating EusLisp code from jsk_perception/EuclideanSegment.srv | |
]2;[build] 26/37[build - 34.2] [jsk_ik_server - 11.3] [pr2eus... [4/8 Active | 26/37 Completed] | |
[jsk_perception] Generating EusLisp code from jsk_perception/SetTemplate.srv | |
]2;[build] 26/37[build - 34.2] [jsk_ik_server - 11.4] [pr2eus... [4/8 Active | 26/37 Completed] | |
[pr2eus] <== '/home/garaemon/ros/hydro/build/pr2eus/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 26/37[build - 34.2] [jsk_ik_server - 11.4] [pr2eus... [4/8 Active | 26/37 Completed] | |
Finished <== pr2eus [ 11.3 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 27/37[build - 34.2] [jsk_ik_server - 11.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target geometry_msgs_generate_messages_py | |
]2;[build] 27/37[build - 34.2] [jsk_ik_server - 11.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/BoundingVolume.msg | |
]2;[build] 27/37[build - 34.3] [jsk_ik_server - 11.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [ 62%] Generating EusLisp code from jsk_perception/NonMaximumSuppression.srv | |
]2;[build] 27/37[build - 34.3] [jsk_ik_server - 11.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] Built target jsk_perception_generate_messages_py | |
]2;[build] 27/37[build - 34.3] [jsk_ik_server - 11.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [ 63%] Built target oriented_gradient_node | |
]2;[build] 27/37[build - 34.3] [jsk_ik_server - 11.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] Built target jsk_perception_generate_messages_lisp | |
]2;[build] 27/37[build - 34.3] [jsk_ik_server - 11.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 21%] [ 21%] Generating EusLisp code from moveit_msgs/Constraints.msg | |
]2;[build] 27/37[build - 34.4] [jsk_ik_server - 11.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [ 64%] [ 64%] Generating EusLisp code from jsk_perception/WhiteBalancePoints.srv | |
]2;[build] 27/37[build - 34.4] [jsk_ik_server - 11.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 22%] [ 22%] Generating EusLisp code from moveit_msgs/Constraints.msg | |
]2;[build] 27/37[build - 34.4] [jsk_ik_server - 11.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/ConstraintEvalResult.msg | |
]2;[build] 27/37[build - 34.4] [jsk_ik_server - 11.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [ 64%] Built target jsk_perception_gencpp | |
]2;[build] 27/37[build - 34.4] [jsk_ik_server - 11.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] Generating EusLisp code from jsk_perception/WhiteBalance.srv | |
]2;[build] 27/37[build - 34.5] [jsk_ik_server - 11.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] Generating EusLisp manifest code for jsk_perception | |
]2;[build] 27/37[build - 34.5] [jsk_ik_server - 11.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 23%] Generating EusLisp code from moveit_msgs/ConstraintEvalResult.msg | |
]2;[build] 27/37[build - 34.5] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/ConstraintEvalResult.msg | |
]2;[build] 27/37[build - 34.5] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 23%] [ 24%] [ 24%] Generating EusLisp code from moveit_msgs/CostSource.msg | |
]2;[build] 27/37[build - 34.5] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/Constraints.msg | |
]2;[build] 27/37[build - 34.5] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/Constraints.msg | |
]2;[build] 27/37[build - 34.5] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 27%] [ 27%] [ 28%] [ 28%] Built target line_segment_collector | |
]2;[build] 27/37[build - 34.5] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 28%] [ 28%] Built target keypoints_publisher | |
]2;[build] 27/37[build - 34.5] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [ 65%] Built target camshiftdemo | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target linemod_detector | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target line_segment_detector | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.7] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 24%] [ 24%] [ 24%] Generating EusLisp code from moveit_msgs/CostSource.msg | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/CostSource.msg | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target linemod_trainer | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 24%] Generating EusLisp code from moveit_msgs/CostSource.msg | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target mask_image_cluster_filter | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/Constraints.msg | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 24%] [ 24%] Generating EusLisp code from moveit_msgs/Constraints.msg | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/ContactInformation.msg | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [ 66%] [ 67%] [ 67%] Built target color_histogram_sliding_matcher | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [ 68%] [ 97%] Built target hough_lines | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] Built target point_pose_extractor | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] Built target jsk_perception | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] Built target rectangle_detector | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 24%] [ 25%] Generating EusLisp code from moveit_msgs/CostSource.msg | |
]2;[build] 27/37[build - 34.6] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/ContactInformation.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 26%] [ 26%] [ 26%] [ 26%] Generating EusLisp code from moveit_msgs/ContactInformation.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 29%] [ 30%] [ 30%] [ 30%] [ 30%] [ 30%] Built target mask_image_filter | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/ContactInformation.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target multi_plane_extraction | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.8] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target mask_image_to_depth_considered_mask_image | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target mask_image_to_point_indices | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target multi_plane_sac_segmentation | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target normal_concatenater | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/ContactInformation.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 26%] Generating EusLisp code from moveit_msgs/DisplayTrajectory.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/DisplayTrajectory.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [ 98%] [100%] Built target virtual_camera_mono | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] Built target white_balance_converter | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 26%] [ 26%] Generating EusLisp code from moveit_msgs/ContactInformation.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/DisplayTrajectory.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 31%] [ 31%] [ 31%] Built target normal_direction_filter | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 31%] Built target normal_estimation_integral_image | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target octree_change_publisher | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 26%] [ 26%] Generating EusLisp code from moveit_msgs/DisplayTrajectory.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/DisplayRobotState.msg | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 32%] [ 32%] Built target organized_pointcloud_to_point_indices | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target organized_multi_plane_segmentation | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target organized_pass_through | |
]2;[build] 27/37[build - 34.7] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 26%] [ 27%] Generating EusLisp code from moveit_msgs/DisplayRobotState.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 27%] [ 27%] Generating EusLisp code from moveit_msgs/DisplayRobotState.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/DisplayTrajectory.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/DisplayTrajectory.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 27%] Generating EusLisp code from moveit_msgs/DisplayRobotState.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 11.9] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 27%] Generating EusLisp code from moveit_msgs/DisplayRobotState.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 27%] [ 27%] [ 27%] Generating EusLisp code from moveit_msgs/Grasp.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/Grasp.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 32%] [ 33%] [ 33%] [ 34%] [ 34%] [ 35%] [ 35%] [ 35%] Built target parallel_edge_finder | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/DisplayRobotState.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target particle_filter_tracking | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target planar_pointcloud_simulator | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target plane_concatenator | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target plane_reasoner | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target plane_rejector | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target point_indices_to_mask_image | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target pointcloud_database_server | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 27%] [ 28%] Generating EusLisp code from moveit_msgs/Grasp.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 28%] Generating EusLisp code from moveit_msgs/Grasp.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 28%] Generating EusLisp code from moveit_msgs/Grasp.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 28%] [ 28%] Generating EusLisp code from moveit_msgs/GripperTranslation.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GripperTranslation.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 29%] [ 30%] Generating EusLisp code from moveit_msgs/GripperTranslation.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/Grasp.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GripperTranslation.msg | |
]2;[build] 27/37[build - 34.8] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 30%] [ 30%] Generating EusLisp code from moveit_msgs/JointConstraint.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GripperTranslation.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 35%] [ 36%] [ 36%] [ 36%] [ 37%] [ 37%] Built target pointcloud_localization | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target pointcloud_to_cluster_point_indices | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target pointcloud_screenpoint | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target polygon_appender | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.0] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target polygon_array_transformer | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target polygon_array_wrapper | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 30%] [ 30%] Generating EusLisp code from moveit_msgs/JointConstraint.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/JointConstraint.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 30%] [ 30%] Generating EusLisp code from moveit_msgs/GripperTranslation.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 30%] Generating EusLisp code from moveit_msgs/JointConstraint.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/JointConstraint.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 31%] [ 31%] Generating EusLisp code from moveit_msgs/JointLimits.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/JointConstraint.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 38%] [ 38%] Built target polygon_magnifier | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 38%] [ 38%] Built target polygon_flipper | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 39%] Built target region_growing_multiple_plane_segmentation | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 32%] Generating EusLisp code from moveit_msgs/JointLimits.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target polygon_points_sampler | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target region_growing_segmentation | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 33%] [ 33%] Generating EusLisp code from moveit_msgs/JointLimits.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 33%] Generating EusLisp code from moveit_msgs/LinkPadding.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/JointLimits.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 33%] [ 33%] Generating EusLisp code from moveit_msgs/JointLimits.msg | |
]2;[build] 27/37[build - 34.9] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/JointLimits.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 33%] [ 33%] Generating EusLisp code from moveit_msgs/LinkScale.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 39%] [ 39%] [ 40%] Built target resize_points_publisher | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 33%] [ 33%] Generating EusLisp code from moveit_msgs/LinkPadding.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/LinkPadding.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.1] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 40%] Built target rgb_color_filter | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 40%] [ 41%] Built target roi_clipper | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target selected_cluster_publisher | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 34%] Generating EusLisp code from moveit_msgs/LinkPadding.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target snapit | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target spherical_pointcloud_simulator | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 34%] Generating EusLisp code from moveit_msgs/LinkScale.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MotionPlanRequest.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 34%] Generating EusLisp code from moveit_msgs/LinkPadding.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 34%] Generating EusLisp code from moveit_msgs/LinkPadding.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 34%] Generating EusLisp code from moveit_msgs/MotionPlanResponse.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 41%] [ 41%] [ 41%] Built target supervoxel_segmentation | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 34%] [ 34%] Generating EusLisp code from moveit_msgs/MotionPlanRequest.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target static_polygon_array_publisher | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 41%] Built target tilt_laser_listener | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 34%] Generating EusLisp code from moveit_msgs/LinkScale.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 42%] Built target tf_transform_cloud | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target torus_finder | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/LinkScale.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 34%] [ 35%] [ 35%] Generating EusLisp code from moveit_msgs/MotionPlanRequest.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MotionPlanDetailedResponse.msg | |
]2;[build] 27/37[build - 35.0] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/LinkScale.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 42%] [ 43%] Built target uniform_sampling | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 43%] Built target transform_pointcloud_in_bounding_box | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target voxel_grid_downsample_decoder | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 35%] [ 35%] Generating EusLisp code from moveit_msgs/LinkScale.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.2] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveItErrorCodes.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 35%] [ 35%] Generating EusLisp code from moveit_msgs/MotionPlanResponse.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] Generating EusLisp code from moveit_msgs/MotionPlanRequest.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MotionPlanDetailedResponse.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 49%] [ 50%] [ 58%] [ 62%] Built target jsk_pcl_ros_generate_messages_cpp | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 62%] Built target voxel_grid_downsample_manager | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] [ 36%] Generating EusLisp code from moveit_msgs/MotionPlanDetailedResponse.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 62%] Built target jsk_pcl_ros_generate_messages_lisp | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target jsk_pcl_ros_generate_messages_py | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Generating EusLisp code from jsk_pcl_ros/SwitchTopic.srv | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Generating EusLisp code from jsk_pcl_ros/TowerRobotMoveCommand.srv | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] Generating EusLisp code from moveit_msgs/MotionPlanResponse.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MotionPlanResponse.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 63%] [ 63%] Generating EusLisp code from jsk_pcl_ros/SetDepthCalibrationParameter.srv | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] [ 36%] Generating EusLisp code from moveit_msgs/TrajectoryConstraints.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 63%] [ 64%] [ 64%] Generating EusLisp code from jsk_pcl_ros/SnapFootstep.srv | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target jsk_pcl_ros_gencpp | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] Generating EusLisp code from moveit_msgs/ObjectColor.msg | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Generating EusLisp code from jsk_pcl_ros/PolygonOnEnvironment.srv | |
]2;[build] 27/37[build - 35.1] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 64%] Generating EusLisp code from jsk_pcl_ros/CallSnapIt.srv | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MotionPlanDetailedResponse.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Generating EusLisp code from jsk_pcl_ros/EuclideanSegment.srv | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] [ 36%] Generating EusLisp code from moveit_msgs/MoveItErrorCodes.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] Generating EusLisp code from moveit_msgs/MoveItErrorCodes.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.3] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/TrajectoryConstraints.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 64%] Generating EusLisp code from jsk_pcl_ros/TransformScreenpoint.srv | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] [ 36%] Generating EusLisp code from moveit_msgs/TrajectoryConstraints.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/MoveItErrorCodes.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 65%] [ 65%] [ 65%] [ 65%] [ 68%] Built target jsk_pcl_ros_moveit | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target jsk_pcl_ros_base | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] Generating EusLisp code from moveit_msgs/OrientationConstraint.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Generating EusLisp code from jsk_pcl_ros/ICPAlign.srv | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Generating EusLisp code from jsk_pcl_ros/ICPAlignWithBox.srv | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] [ 36%] Generating EusLisp code from moveit_msgs/TrajectoryConstraints.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/OrientedBoundingBox.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 69%] Generating EusLisp code from jsk_pcl_ros/CheckCircle.srv | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 36%] [ 36%] [ 37%] Generating EusLisp code from moveit_msgs/ObjectColor.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 69%] [ 69%] Generating EusLisp code from jsk_pcl_ros/TowerPickUp.srv | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Generating EusLisp code from jsk_pcl_ros/SetPointCloud2.srv | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/TrajectoryConstraints.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/OrientationConstraint.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Generating EusLisp code from jsk_pcl_ros/CallPolygon.srv | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 37%] [ 38%] [ 38%] Generating EusLisp code from moveit_msgs/PlaceLocation.msg | |
]2;[build] 27/37[build - 35.2] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/TrajectoryConstraints.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 70%] [ 70%] Generating EusLisp code from jsk_pcl_ros/RobotPickupReleasePoint.srv | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 38%] [ 38%] Generating EusLisp code from moveit_msgs/ObjectColor.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Generating EusLisp code from jsk_pcl_ros/EnvironmentLock.srv | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/OrientationConstraint.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.4] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceLocation.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 70%] Generating EusLisp code from jsk_pcl_ros/UpdateOffset.srv | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [ 70%] [ 75%] Generating EusLisp manifest code for jsk_pcl_ros | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 38%] [ 38%] [ 38%] Generating EusLisp code from moveit_msgs/OrientationConstraint.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/OrientedBoundingBox.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] Built target jsk_pcl_ros_util | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 38%] [ 39%] Generating EusLisp code from moveit_msgs/PlannerInterfaceDescription.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/OrientedBoundingBox.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 39%] Generating EusLisp code from moveit_msgs/OrientationConstraint.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlannerInterfaceDescription.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 39%] [ 39%] Generating EusLisp code from moveit_msgs/PlannerInterfaceDescription.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlanningScene.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 40%] [ 41%] Generating EusLisp code from moveit_msgs/PlanningSceneComponents.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlaceLocation.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 41%] [ 41%] Generating EusLisp code from moveit_msgs/PlaceLocation.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlannerInterfaceDescription.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 42%] [ 42%] Generating EusLisp code from moveit_msgs/PlanningScene.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlanningScene.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 42%] Generating EusLisp code from moveit_msgs/PlanningSceneComponents.msg | |
]2;[build] 27/37[build - 35.3] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 42%] [ 42%] [ 42%] Generating EusLisp code from moveit_msgs/PlanningSceneWorld.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlannerInterfaceDescription.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlanningOptions.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 43%] [ 43%] Generating EusLisp code from moveit_msgs/PlannerInterfaceDescription.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 43%] Generating EusLisp code from moveit_msgs/PlanningScene.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.5] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlanningSceneWorld.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 43%] [ 43%] Generating EusLisp code from moveit_msgs/PlanningOptions.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 43%] [ 43%] Generating EusLisp code from moveit_msgs/PlanningSceneComponents.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlanningSceneWorld.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PositionConstraint.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 43%] [ 43%] Generating EusLisp code from moveit_msgs/RobotState.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 43%] Generating EusLisp code from moveit_msgs/PlanningSceneWorld.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlanningSceneWorld.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_pcl_ros] [100%] Built target jsk_pcl_ros | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 43%] [ 43%] Generating EusLisp code from moveit_msgs/PositionConstraint.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 43%] [ 43%] [ 44%] Generating EusLisp code from moveit_msgs/PlanningSceneWorld.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/RobotState.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PlanningOptions.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/RobotTrajectory.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 45%] Generating EusLisp code from moveit_msgs/VisibilityConstraint.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 46%] [ 46%] Generating EusLisp code from moveit_msgs/PositionConstraint.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PositionConstraint.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [100%] Built target jsk_perception_generate_messages_eus | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 46%] [ 46%] [ 47%] Generating EusLisp code from moveit_msgs/PositionConstraint.msg | |
]2;[build] 27/37[build - 35.4] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] [100%] Built target jsk_perception_generate_messages | |
]2;[build] 27/37[build - 35.5] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/WorkspaceParameters.msg | |
]2;[build] 27/37[build - 35.5] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] [ 47%] Generating EusLisp code from moveit_msgs/RobotTrajectory.msg | |
]2;[build] 27/37[build - 35.5] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/VisibilityConstraint.msg | |
]2;[build] 27/37[build - 35.5] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
[jsk_perception] <== '/home/garaemon/ros/hydro/build/jsk_perception/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 27/37[build - 35.5] [jsk_ik_server - 12.6] [jsk_pe... [3/8 Active | 27/37 Completed] | |
Finished <== jsk_perception [ 11.7 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 47%] [ 47%] Generating EusLisp code from moveit_msgs/RobotTrajectory.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/RobotState.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 47%] Generating EusLisp code from moveit_msgs/WorkspaceParameters.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 47%] Generating EusLisp code from moveit_msgs/RobotTrajectory.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 47%] [ 47%] Generating EusLisp code from moveit_msgs/KinematicSolverInfo.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/VisibilityConstraint.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 47%] [ 47%] Generating EusLisp code from moveit_msgs/KinematicSolverInfo.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/WorkspaceParameters.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 47%] [ 48%] Generating EusLisp code from moveit_msgs/VisibilityConstraint.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 48%] Generating EusLisp code from moveit_msgs/KinematicSolverInfo.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 48%] Generating EusLisp code from moveit_msgs/WorkspaceParameters.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/VisibilityConstraint.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 48%] Generating EusLisp code from moveit_msgs/PositionIKRequest.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.6] | |
[jsk_ik_server] [ 48%] [ 48%] Generating EusLisp code from moveit_msgs/KinematicSolverInfo.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PositionIKRequest.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 48%] Generating EusLisp code from moveit_msgs/PositionIKRequest.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 49%] [ 49%] [ 49%] Generating EusLisp code from moveit_msgs/GetMotionPlan.srv | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/KinematicSolverInfo.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/KinematicSolverInfo.msg | |
]2;[build] 28/37[build - 35.5] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 50%] [ 50%] Generating EusLisp code from moveit_msgs/ExecuteKnownTrajectory.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetMotionPlan.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 51%] [ 51%] Generating EusLisp code from moveit_msgs/PositionIKRequest.msg | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 52%] Generating EusLisp code from moveit_msgs/GetMotionPlan.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.7] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetMotionPlan.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 52%] [ 52%] Generating EusLisp code from moveit_msgs/PositionIKRequest.msg | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 52%] [ 52%] Generating EusLisp code from moveit_msgs/ExecuteKnownTrajectory.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/ExecuteKnownTrajectory.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/PositionIKRequest.msg | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 52%] Generating EusLisp code from moveit_msgs/GetStateValidity.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 52%] [ 52%] Generating EusLisp code from moveit_msgs/GetStateValidity.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/ExecuteKnownTrajectory.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 52%] Generating EusLisp code from moveit_msgs/GetCartesianPath.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 53%] [ 53%] Generating EusLisp code from moveit_msgs/GetStateValidity.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetPlanningScene.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 54%] Generating EusLisp code from moveit_msgs/GetStateValidity.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.7] | |
[jsk_ik_server] [ 54%] [ 54%] Generating EusLisp code from moveit_msgs/GetMotionPlan.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.8] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetStateValidity.srv | |
]2;[build] 28/37[build - 35.6] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.8] | |
[jsk_ik_server] [ 54%] Generating EusLisp code from moveit_msgs/GetCartesianPath.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.8] | |
[jsk_ik_server] [ 54%] [ 54%] Generating EusLisp code from moveit_msgs/GetCartesianPath.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.8] [jsk_pcl_ros - 11.8] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetPlanningScene.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.9] [jsk_pcl_ros - 11.8] | |
[jsk_ik_server] [ 54%] [ 54%] Generating EusLisp code from moveit_msgs/GetCartesianPath.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.9] [jsk_pcl_ros - 11.8] | |
[jsk_ik_server] [ 54%] Generating EusLisp code from moveit_msgs/QueryPlannerInterfaces.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.9] [jsk_pcl_ros - 11.8] | |
[jsk_ik_server] [ 54%] [ 54%] Generating EusLisp code from moveit_msgs/QueryPlannerInterfaces.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.9] [jsk_pcl_ros - 11.8] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetStateValidity.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.9] [jsk_pcl_ros - 11.8] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetCartesianPath.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.9] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] [ 54%] [ 54%] Generating EusLisp code from moveit_msgs/GetPlanningScene.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.9] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] [ 54%] Generating EusLisp code from moveit_msgs/GetConstraintAwarePositionIK.srv | |
]2;[build] 28/37[build - 35.7] [jsk_ik_server - 12.9] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] [ 54%] [ 54%] [ 54%] Generating EusLisp code from moveit_msgs/GetConstraintAwarePositionIK.srv | |
]2;[build] 28/37[build - 35.8] [jsk_ik_server - 12.9] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetConstraintAwarePositionIK.srv | |
]2;[build] 28/37[build - 35.8] [jsk_ik_server - 13.0] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/QueryPlannerInterfaces.srv | |
]2;[build] 28/37[build - 35.8] [jsk_ik_server - 13.0] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/QueryPlannerInterfaces.srv | |
]2;[build] 28/37[build - 35.8] [jsk_ik_server - 13.0] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] [ 54%] [ 54%] Generating EusLisp code from moveit_msgs/QueryPlannerInterfaces.srv | |
]2;[build] 28/37[build - 35.8] [jsk_ik_server - 13.0] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/QueryPlannerInterfaces.srv | |
]2;[build] 28/37[build - 35.8] [jsk_ik_server - 13.0] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] [ 54%] [ 54%] [ 55%] [ 56%] [ 56%] [ 56%] Generating EusLisp code from moveit_msgs/GetConstraintAwarePositionIK.srv | |
]2;[build] 28/37[build - 35.8] [jsk_ik_server - 13.0] [jsk_pcl_ros - 11.9] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetKinematicSolverInfo.srv | |
]2;[build] 28/37[build - 35.8] [jsk_ik_server - 13.0] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetKinematicSolverInfo.srv | |
]2;[build] 28/37[build - 35.8] [jsk_ik_server - 13.0] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetPositionFK.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.0] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetKinematicSolverInfo.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.0] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetPositionIK.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] [ 56%] [ 57%] Generating EusLisp code from moveit_msgs/GetConstraintAwarePositionIK.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] [ 57%] [ 57%] Generating EusLisp code from moveit_msgs/GetConstraintAwarePositionIK.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] [ 57%] Generating EusLisp code from moveit_msgs/GetPositionFK.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetPositionIK.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] [ 57%] [ 57%] Generating EusLisp code from moveit_msgs/GetPositionIK.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.0] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetKinematicSolverInfo.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/GetPositionFK.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] [ 57%] Generating EusLisp code from moveit_msgs/SaveMap.srv | |
]2;[build] 28/37[build - 35.9] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] [ 57%] Generating EusLisp code from moveit_msgs/SaveMap.srv | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] [ 57%] [ 57%] Generating EusLisp code from moveit_msgs/SaveMap.srv | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.1] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] [ 58%] Generating EusLisp code from moveit_msgs/GetPositionIK.srv | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] [ 58%] Generating EusLisp code from moveit_msgs/GetKinematicSolverInfo.srv | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.1] | |
[jsk_pcl_ros] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] [ 58%] [ 58%] Generating EusLisp code from moveit_msgs/GetPositionIK.srv | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/LoadMap.srv | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/LoadMap.srv | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.1] | |
[jsk_ik_server] [ 58%] [ 59%] Generating EusLisp manifest code for moveit_msgs | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/LoadMap.srv | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] [ 59%] [ 59%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionAction.msg | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/SaveMap.srv | |
]2;[build] 28/37[build - 36.0] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] [ 59%] [ 59%] [ 60%] [ 60%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionActionGoal.msg | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/SaveMap.srv | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] Generating EusLisp manifest code for moveit_msgs | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/SaveMap.srv | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.2] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] [ 61%] Generating EusLisp manifest code for moveit_msgs | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] [ 61%] [ 61%] Generating EusLisp manifest code for moveit_msgs | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] Generating EusLisp code from moveit_msgs/LoadMap.srv | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] [ 61%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionActionResult.msg | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] [ 61%] [ 62%] Generating EusLisp manifest code for moveit_msgs | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionActionResult.msg | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.2] | |
[jsk_ik_server] [ 62%] Generating EusLisp manifest code for moveit_msgs | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.3] | |
[jsk_ik_server] [ 62%] [ 62%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionActionFeedback.msg | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.3] | |
[jsk_ik_server] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionActionFeedback.msg | |
]2;[build] 28/37[build - 36.1] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.3] | |
[jsk_ik_server] [ 62%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionActionGoal.msg | |
]2;[build] 28/37[build - 36.2] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.3] | |
[jsk_ik_server] [ 63%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionActionResult.msg | |
]2;[build] 28/37[build - 36.2] [jsk_ik_server - 13.3] [jsk_pcl_ros - 12.3] | |
[jsk_ik_server] [ 64%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionAction.msg | |
]2;[build] 28/37[build - 36.2] [jsk_ik_server - 13.4] [jsk_pcl_ros - 12.3] | |
[jsk_pcl_ros] [100%] Built target jsk_pcl_ros_generate_messages_eus | |
]2;[build] 28/37[build - 36.2] [jsk_ik_server - 13.4] [jsk_pcl_ros - 12.3] | |
[jsk_ik_server] [ 64%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionGoal.msg | |
]2;[build] 28/37[build - 36.2] [jsk_ik_server - 13.4] [jsk_pcl_ros - 12.3] | |
[jsk_pcl_ros] [100%] Built target jsk_pcl_ros_generate_messages | |
]2;[build] 28/37[build - 36.2] [jsk_ik_server - 13.4] [jsk_pcl_ros - 12.3] | |
[jsk_pcl_ros] <== '/home/garaemon/ros/hydro/build/jsk_pcl_ros/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 28/37[build - 36.2] [jsk_ik_server - 13.4] [jsk_pcl_ros - 12.3] | |
Finished <== jsk_pcl_ros [ 12.3 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 29/37[build - 36.2] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 64%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionGoal.msg | |
]2;[build] 29/37[build - 36.2] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 64%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionResult.msg | |
]2;[build] 29/37[build - 36.2] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 65%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionResult.msg | |
]2;[build] 29/37[build - 36.2] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 65%] [ 65%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionFeedback.msg | |
]2;[build] 29/37[build - 36.2] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionFeedback.msg | |
]2;[build] 29/37[build - 36.2] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 66%] [ 66%] Generating EusLisp code from object_recognition_msgs/ObjectType.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from object_recognition_msgs/ObjectType.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 66%] [ 66%] Generating EusLisp code from object_recognition_msgs/ObjectInformation.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from object_recognition_msgs/ObjectInformation.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 66%] Generating EusLisp code from object_recognition_msgs/RecognizedObject.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 66%] Generating EusLisp code from object_recognition_msgs/RecognizedObject.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 66%] Generating EusLisp code from object_recognition_msgs/RecognizedObjectArray.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 66%] Generating EusLisp code from object_recognition_msgs/RecognizedObjectArray.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 66%] Generating EusLisp code from object_recognition_msgs/Table.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 67%] Generating EusLisp code from object_recognition_msgs/Table.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 67%] Generating EusLisp code from object_recognition_msgs/TableArray.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 67%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionGoal.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 67%] Generating EusLisp code from object_recognition_msgs/TableArray.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 67%] Generating EusLisp code from object_recognition_msgs/TableArray.msg | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 68%] Generating EusLisp code from object_recognition_msgs/GetObjectInformation.srv | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 69%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from object_recognition_msgs/GetObjectInformation.srv | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 69%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp manifest code for object_recognition_msgs | |
]2;[build] 29/37[build - 36.3] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 69%] Generating EusLisp manifest code for object_recognition_msgs | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 69%] Generating EusLisp code from object_recognition_msgs/GetObjectInformation.srv | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 70%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionGoal.msg | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 70%] [ 70%] Generating EusLisp code from object_recognition_msgs/ObjectRecognitionGoal.msg | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp manifest code for object_recognition_msgs | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 70%] Generating EusLisp manifest code for object_recognition_msgs | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 70%] Generating EusLisp manifest code for object_recognition_msgs | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 71%] Built target moveit_msgs_generate_messages_eus | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 71%] [ 71%] Generating EusLisp code from octomap_msgs/OctomapWithPose.msg | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 71%] Generating EusLisp code from octomap_msgs/Octomap.msg | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from octomap_msgs/GetOctomap.srv | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 72%] [ 72%] Generating EusLisp code from octomap_msgs/BoundingBoxQuery.srv | |
]2;[build] 29/37[build - 36.4] [jsk_ik_server - 13.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 73%] Generating EusLisp manifest code for octomap_msgs | |
]2;[build] 29/37[build - 36.5] [jsk_ik_server - 13.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from octomap_msgs/Octomap.msg | |
]2;[build] 29/37[build - 36.5] [jsk_ik_server - 13.7] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 73%] Generating EusLisp code from octomap_msgs/GetOctomap.srv | |
]2;[build] 29/37[build - 36.5] [jsk_ik_server - 13.7] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 73%] Generating EusLisp code from octomap_msgs/Octomap.msg | |
]2;[build] 29/37[build - 36.5] [jsk_ik_server - 13.7] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 73%] [ 73%] Generating EusLisp manifest code for octomap_msgs | |
]2;[build] 29/37[build - 36.5] [jsk_ik_server - 13.7] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp manifest code for octomap_msgs | |
]2;[build] 29/37[build - 36.5] [jsk_ik_server - 13.7] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.6] [jsk_ik_server - 13.7] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.6] [jsk_ik_server - 13.7] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.6] [jsk_ik_server - 13.8] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.6] [jsk_ik_server - 13.8] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.6] [jsk_ik_server - 13.8] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 73%] Generating EusLisp code from shape_msgs/Mesh.msg | |
]2;[build] 29/37[build - 36.6] [jsk_ik_server - 13.8] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 73%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.6] [jsk_ik_server - 13.8] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from octomap_msgs/Octomap.msg | |
]2;[build] 29/37[build - 36.7] [jsk_ik_server - 13.8] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 73%] Generating EusLisp code from shape_msgs/MeshTriangle.msg | |
]2;[build] 29/37[build - 36.7] [jsk_ik_server - 13.9] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 73%] Generating EusLisp manifest code for octomap_msgs | |
]2;[build] 29/37[build - 36.7] [jsk_ik_server - 13.9] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 77%] Built target object_recognition_msgs_generate_messages_eus | |
]2;[build] 29/37[build - 36.8] [jsk_ik_server - 13.9] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 77%] [ 77%] [ 77%] Generating EusLisp code from shape_msgs/Plane.msg | |
]2;[build] 29/37[build - 36.8] [jsk_ik_server - 14.0] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from shape_msgs/Mesh.msg | |
]2;[build] 29/37[build - 36.8] [jsk_ik_server - 14.0] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from shape_msgs/Plane.msg | |
]2;[build] 29/37[build - 36.8] [jsk_ik_server - 14.0] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 36.9] [jsk_ik_server - 14.1] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 77%] Generating EusLisp code from shape_msgs/Mesh.msg | |
]2;[build] 29/37[build - 36.9] [jsk_ik_server - 14.1] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 77%] [ 77%] [ 77%] Generating EusLisp manifest code for shape_msgs | |
]2;[build] 29/37[build - 37.0] [jsk_ik_server - 14.2] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from shape_msgs/SolidPrimitive.msg | |
]2;[build] 29/37[build - 37.0] [jsk_ik_server - 14.2] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from shape_msgs/SolidPrimitive.msg | |
]2;[build] 29/37[build - 37.1] [jsk_ik_server - 14.2] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 77%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 37.1] [jsk_ik_server - 14.3] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 77%] [ 78%] Generating EusLisp code from shape_msgs/Plane.msg | |
]2;[build] 29/37[build - 37.2] [jsk_ik_server - 14.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from shape_msgs/SolidPrimitive.msg | |
]2;[build] 29/37[build - 37.3] [jsk_ik_server - 14.4] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 78%] Generating EusLisp manifest code for shape_msgs | |
]2;[build] 29/37[build - 37.3] [jsk_ik_server - 14.5] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp manifest code for shape_msgs | |
]2;[build] 29/37[build - 37.4] [jsk_ik_server - 14.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 79%] [ 79%] Generating EusLisp code from trajectory_msgs/JointTrajectory.msg | |
]2;[build] 29/37[build - 37.4] [jsk_ik_server - 14.6] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from trajectory_msgs/JointTrajectoryPoint.msg | |
]2;[build] 29/37[build - 37.5] [jsk_ik_server - 14.7] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 79%] [ 79%] Generating EusLisp code from trajectory_msgs/MultiDOFJointTrajectory.msg | |
]2;[build] 29/37[build - 37.6] [jsk_ik_server - 14.8] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 79%] Generating EusLisp code from trajectory_msgs/JointTrajectory.msg | |
]2;[build] 29/37[build - 37.7] [jsk_ik_server - 14.9] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp code from trajectory_msgs/MultiDOFJointTrajectoryPoint.msg | |
]2;[build] 29/37[build - 37.7] [jsk_ik_server - 14.9] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 79%] [ 79%] Generating EusLisp code from trajectory_msgs/MultiDOFJointTrajectory.msg | |
]2;[build] 29/37[build - 37.8] [jsk_ik_server - 15.0] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 80%] [ 81%] Generating EusLisp manifest code for trajectory_msgs | |
]2;[build] 29/37[build - 37.9] [jsk_ik_server - 15.0] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp manifest code for jsk_ik_server | |
]2;[build] 29/37[build - 37.9] [jsk_ik_server - 15.1] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] Generating EusLisp manifest code for trajectory_msgs | |
]2;[build] 29/37[build - 38.0] [jsk_ik_server - 15.2] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 38.1] [jsk_ik_server - 15.2] [1/8 Active | 29/37 Completed] | |
[jsk_ik_server] [ 86%] Built target octomap_msgs_generate_messages_eus | |
]2;[build] 29/37[build - 38.1] [jsk_ik_server - 15.3] [1/8 Active | 29/37 Completed] | |
Starting ==> pr2eus_moveit | |
]2;[build] 29/37[build - 38.1] [jsk_ik_server - 15.3] [pr2eus_moveit - 0.0] | |
[pr2eus_moveit] ==> '/home/garaemon/ros/hydro/build/pr2eus_moveit/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/pr2eus_moveit' | |
]2;[build] 29/37[build - 38.1] [jsk_ik_server - 15.3] [pr2eus_moveit - 0.0] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 38.1] [jsk_ik_server - 15.3] [pr2eus_moveit - 0.0] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 38.2] [jsk_ik_server - 15.3] [pr2eus_moveit - 0.1] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 38.2] [jsk_ik_server - 15.4] [pr2eus_moveit - 0.1] | |
[pr2eus_moveit] <== '/home/garaemon/ros/hydro/build/pr2eus_moveit/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 29/37[build - 38.2] [jsk_ik_server - 15.4] [pr2eus_moveit - 0.2] | |
[pr2eus_moveit] ==> '/home/garaemon/ros/hydro/build/pr2eus_moveit/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/pr2eus_moveit' | |
]2;[build] 29/37[build - 38.3] [jsk_ik_server - 15.4] [pr2eus_moveit - 0.2] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 38.3] [jsk_ik_server - 15.5] [pr2eus_moveit - 0.2] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 38.3] [jsk_ik_server - 15.5] [pr2eus_moveit - 0.2] | |
[jsk_ik_server] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 29/37[build - 38.3] [jsk_ik_server - 15.5] [pr2eus_moveit - 0.2] | |
[jsk_ik_server] [ 91%] Built target shape_msgs_generate_messages_eus | |
]2;[build] 29/37[build - 38.3] [jsk_ik_server - 15.5] [pr2eus_moveit - 0.3] | |
[pr2eus_moveit] [100%] Generating EusLisp manifest code for pr2eus_moveit | |
]2;[build] 29/37[build - 38.4] [jsk_ik_server - 15.5] [pr2eus_moveit - 0.3] | |
[jsk_ik_server] [ 94%] Built target trajectory_msgs_generate_messages_eus | |
]2;[build] 29/37[build - 38.4] [jsk_ik_server - 15.6] [pr2eus_moveit - 0.3] | |
[jsk_ik_server] [100%] Built target jsk_ik_server_generate_messages_eus | |
]2;[build] 29/37[build - 38.4] [jsk_ik_server - 15.6] [pr2eus_moveit - 0.3] | |
[jsk_ik_server] <== '/home/garaemon/ros/hydro/build/jsk_ik_server/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 29/37[build - 38.4] [jsk_ik_server - 15.6] [pr2eus_moveit - 0.4] | |
Finished <== jsk_ik_server [ 15.6 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 30/37[build - 38.5] [pr2eus_moveit - 0.4] [1/8 Active | 30/37 Completed] | |
[pr2eus_moveit] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 30/37[build - 38.5] [pr2eus_moveit - 0.4] [1/8 Active | 30/37 Completed] | |
[pr2eus_moveit] [100%] Built target pr2eus_moveit_generate_messages_eus | |
]2;[build] 30/37[build - 38.5] [pr2eus_moveit - 0.4] [1/8 Active | 30/37 Completed] | |
[pr2eus_moveit] <== '/home/garaemon/ros/hydro/build/pr2eus_moveit/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 30/37[build - 38.5] [pr2eus_moveit - 0.4] [1/8 Active | 30/37 Completed] | |
Finished <== pr2eus_moveit [ 0.5 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 31/37[build - 38.6] [0/8 Active | 31/37 Completed] | |
Starting ==> jsk_rviz_plugins | |
]2;[build] 31/37[build - 38.6] [jsk_rviz_plugins - 0.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] ==> '/home/garaemon/ros/hydro/build/jsk_rviz_plugins/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_rviz_plugins' | |
]2;[build] 31/37[build - 38.6] [jsk_rviz_plugins - 0.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] <== '/home/garaemon/ros/hydro/build/jsk_rviz_plugins/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 31/37[build - 38.6] [jsk_rviz_plugins - 0.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] ==> '/home/garaemon/ros/hydro/build/jsk_rviz_plugins/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_rviz_plugins' | |
]2;[build] 31/37[build - 38.6] [jsk_rviz_plugins - 0.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 0%] [ 0%] [ 1%] Built target std_msgs_generate_messages_cpp | |
]2;[build] 31/37[build - 38.7] [jsk_rviz_plugins - 0.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from bond/Constants.msg | |
]2;[build] 31/37[build - 38.7] [jsk_rviz_plugins - 0.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 1%] [ 1%] Built target std_msgs_generate_messages_py | |
]2;[build] 31/37[build - 38.7] [jsk_rviz_plugins - 0.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from bond/Constants.msg | |
]2;[build] 31/37[build - 38.7] [jsk_rviz_plugins - 0.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 1%] Built target geometry_msgs_generate_messages_py | |
]2;[build] 31/37[build - 38.7] [jsk_rviz_plugins - 0.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 1%] [ 1%] [ 1%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 31/37[build - 38.8] [jsk_rviz_plugins - 0.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 31/37[build - 38.8] [jsk_rviz_plugins - 0.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from bond/Constants.msg | |
]2;[build] 31/37[build - 38.8] [jsk_rviz_plugins - 0.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 1%] [ 1%] Generating EusLisp code from bond/Status.msg | |
]2;[build] 31/37[build - 38.8] [jsk_rviz_plugins - 0.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp manifest code for bond | |
]2;[build] 31/37[build - 38.8] [jsk_rviz_plugins - 0.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from bond/Status.msg | |
]2;[build] 31/37[build - 38.9] [jsk_rviz_plugins - 0.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 1%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 31/37[build - 38.9] [jsk_rviz_plugins - 0.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 1%] Generating EusLisp code from bond/Constants.msg | |
]2;[build] 31/37[build - 38.9] [jsk_rviz_plugins - 0.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 1%] Generating EusLisp code from bond/Constants.msg | |
]2;[build] 31/37[build - 38.9] [jsk_rviz_plugins - 0.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 2%] [ 2%] [ 3%] Generating EusLisp code from bond/Status.msg | |
]2;[build] 31/37[build - 38.9] [jsk_rviz_plugins - 0.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 3%] Generating EusLisp manifest code for bond | |
]2;[build] 31/37[build - 39.0] [jsk_rviz_plugins - 0.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from bond/Status.msg | |
]2;[build] 31/37[build - 39.0] [jsk_rviz_plugins - 0.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp manifest code for bond | |
]2;[build] 31/37[build - 39.0] [jsk_rviz_plugins - 0.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 4%] Generating EusLisp code from diagnostic_msgs/DiagnosticArray.msg | |
]2;[build] 31/37[build - 39.1] [jsk_rviz_plugins - 0.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 4%] Generating EusLisp code from bond/Status.msg | |
]2;[build] 31/37[build - 39.1] [jsk_rviz_plugins - 0.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 4%] [ 4%] Generating EusLisp manifest code for bond | |
]2;[build] 31/37[build - 39.1] [jsk_rviz_plugins - 0.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from diagnostic_msgs/DiagnosticArray.msg | |
]2;[build] 31/37[build - 39.1] [jsk_rviz_plugins - 0.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 4%] Generating EusLisp code from diagnostic_msgs/DiagnosticArray.msg | |
]2;[build] 31/37[build - 39.2] [jsk_rviz_plugins - 0.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 5%] [ 6%] Generating EusLisp manifest code for bond | |
]2;[build] 31/37[build - 39.2] [jsk_rviz_plugins - 0.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from diagnostic_msgs/DiagnosticStatus.msg | |
]2;[build] 31/37[build - 39.3] [jsk_rviz_plugins - 0.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 6%] Generating EusLisp code from diagnostic_msgs/DiagnosticStatus.msg | |
]2;[build] 31/37[build - 39.3] [jsk_rviz_plugins - 0.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 6%] Generating EusLisp code from diagnostic_msgs/KeyValue.msg | |
]2;[build] 31/37[build - 39.3] [jsk_rviz_plugins - 0.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 6%] Generating EusLisp code from diagnostic_msgs/KeyValue.msg | |
]2;[build] 31/37[build - 39.4] [jsk_rviz_plugins - 0.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 6%] Generating EusLisp code from diagnostic_msgs/SelfTest.srv | |
]2;[build] 31/37[build - 39.5] [jsk_rviz_plugins - 0.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 6%] Generating EusLisp code from diagnostic_msgs/DiagnosticStatus.msg | |
]2;[build] 31/37[build - 39.5] [jsk_rviz_plugins - 0.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 7%] Generating EusLisp code from diagnostic_msgs/SelfTest.srv | |
]2;[build] 31/37[build - 39.5] [jsk_rviz_plugins - 0.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 7%] Generating EusLisp manifest code for diagnostic_msgs | |
]2;[build] 31/37[build - 39.6] [jsk_rviz_plugins - 1.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 8%] Generating EusLisp code from diagnostic_msgs/SelfTest.srv | |
]2;[build] 31/37[build - 39.6] [jsk_rviz_plugins - 1.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 8%] Generating EusLisp manifest code for diagnostic_msgs | |
]2;[build] 31/37[build - 39.7] [jsk_rviz_plugins - 1.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 8%] Generating EusLisp code from map_msgs/OccupancyGridUpdate.msg | |
]2;[build] 31/37[build - 39.7] [jsk_rviz_plugins - 1.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 8%] Generating EusLisp manifest code for diagnostic_msgs | |
]2;[build] 31/37[build - 39.8] [jsk_rviz_plugins - 1.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 39.8] [jsk_rviz_plugins - 1.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 39.8] [jsk_rviz_plugins - 1.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 39.9] [jsk_rviz_plugins - 1.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 39.9] [jsk_rviz_plugins - 1.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 39.9] [jsk_rviz_plugins - 1.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 8%] Built target bond_generate_messages_eus | |
]2;[build] 31/37[build - 39.9] [jsk_rviz_plugins - 1.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 8%] Generating EusLisp code from diagnostic_msgs/DiagnosticStatus.msg | |
]2;[build] 31/37[build - 39.9] [jsk_rviz_plugins - 1.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 8%] Generating EusLisp manifest code for diagnostic_msgs | |
]2;[build] 31/37[build - 40.0] [jsk_rviz_plugins - 1.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 8%] [ 9%] Generating EusLisp code from map_msgs/PointCloud2Update.msg | |
]2;[build] 31/37[build - 40.0] [jsk_rviz_plugins - 1.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp manifest code for diagnostic_msgs | |
]2;[build] 31/37[build - 40.0] [jsk_rviz_plugins - 1.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 9%] [ 9%] Generating EusLisp code from map_msgs/OccupancyGridUpdate.msg | |
]2;[build] 31/37[build - 40.1] [jsk_rviz_plugins - 1.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/ProjectedMapInfo.msg | |
]2;[build] 31/37[build - 40.1] [jsk_rviz_plugins - 1.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 40.1] [jsk_rviz_plugins - 1.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 10%] Generating EusLisp code from map_msgs/PointCloud2Update.msg | |
]2;[build] 31/37[build - 40.1] [jsk_rviz_plugins - 1.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 40.1] [jsk_rviz_plugins - 1.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 10%] [ 11%] Generating EusLisp code from map_msgs/ProjectedMapInfo.msg | |
]2;[build] 31/37[build - 40.2] [jsk_rviz_plugins - 1.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/ProjectedMap.msg | |
]2;[build] 31/37[build - 40.2] [jsk_rviz_plugins - 1.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 11%] Generating EusLisp code from map_msgs/ProjectedMap.msg | |
]2;[build] 31/37[build - 40.2] [jsk_rviz_plugins - 1.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 40.3] [jsk_rviz_plugins - 1.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 11%] Generating EusLisp code from map_msgs/GetMapROI.srv | |
]2;[build] 31/37[build - 40.3] [jsk_rviz_plugins - 1.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 11%] Generating EusLisp manifest code for diagnostic_msgs | |
]2;[build] 31/37[build - 40.3] [jsk_rviz_plugins - 1.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 11%] Generating EusLisp code from map_msgs/ProjectedMapInfo.msg | |
]2;[build] 31/37[build - 40.3] [jsk_rviz_plugins - 1.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 11%] [ 11%] Generating EusLisp code from map_msgs/GetMapROI.srv | |
]2;[build] 31/37[build - 40.4] [jsk_rviz_plugins - 1.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/GetMapROI.srv | |
]2;[build] 31/37[build - 40.4] [jsk_rviz_plugins - 1.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 11%] [ 12%] Generating EusLisp code from map_msgs/GetPointMapROI.srv | |
]2;[build] 31/37[build - 40.4] [jsk_rviz_plugins - 1.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/PointCloud2Update.msg | |
]2;[build] 31/37[build - 40.5] [jsk_rviz_plugins - 1.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 13%] [ 13%] Generating EusLisp code from map_msgs/GetPointMapROI.srv | |
]2;[build] 31/37[build - 40.5] [jsk_rviz_plugins - 1.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/GetPointMapROI.srv | |
]2;[build] 31/37[build - 40.5] [jsk_rviz_plugins - 1.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 13%] [ 13%] [ 13%] Generating EusLisp code from map_msgs/GetPointMapROI.srv | |
]2;[build] 31/37[build - 40.6] [jsk_rviz_plugins - 2.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/GetPointMap.srv | |
]2;[build] 31/37[build - 40.6] [jsk_rviz_plugins - 2.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/GetPointMap.srv | |
]2;[build] 31/37[build - 40.6] [jsk_rviz_plugins - 2.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 13%] [ 13%] Generating EusLisp code from map_msgs/ProjectedMapsInfo.srv | |
]2;[build] 31/37[build - 40.7] [jsk_rviz_plugins - 2.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/GetPointMap.srv | |
]2;[build] 31/37[build - 40.7] [jsk_rviz_plugins - 2.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 14%] [ 15%] Generating EusLisp code from map_msgs/SaveMap.srv | |
]2;[build] 31/37[build - 40.7] [jsk_rviz_plugins - 2.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/GetPointMap.srv | |
]2;[build] 31/37[build - 40.8] [jsk_rviz_plugins - 2.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 15%] Generating EusLisp code from map_msgs/ProjectedMapsInfo.srv | |
]2;[build] 31/37[build - 40.8] [jsk_rviz_plugins - 2.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 15%] Generating EusLisp code from map_msgs/SetMapProjections.srv | |
]2;[build] 31/37[build - 40.9] [jsk_rviz_plugins - 2.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 15%] [ 16%] Generating EusLisp manifest code for map_msgs | |
]2;[build] 31/37[build - 40.9] [jsk_rviz_plugins - 2.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/ProjectedMapsInfo.srv | |
]2;[build] 31/37[build - 41.0] [jsk_rviz_plugins - 2.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 16%] [ 17%] Generating EusLisp code from map_msgs/ProjectedMapsInfo.srv | |
]2;[build] 31/37[build - 41.0] [jsk_rviz_plugins - 2.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/SaveMap.srv | |
]2;[build] 31/37[build - 41.1] [jsk_rviz_plugins - 2.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 17%] [ 17%] Generating EusLisp code from nav_msgs/GridCells.msg | |
]2;[build] 31/37[build - 41.2] [jsk_rviz_plugins - 2.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/SetMapProjections.srv | |
]2;[build] 31/37[build - 41.2] [jsk_rviz_plugins - 2.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 17%] Generating EusLisp code from map_msgs/SetMapProjections.srv | |
]2;[build] 31/37[build - 41.2] [jsk_rviz_plugins - 2.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 17%] [ 18%] Generating EusLisp code from map_msgs/SetMapProjections.srv | |
]2;[build] 31/37[build - 41.2] [jsk_rviz_plugins - 2.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp manifest code for map_msgs | |
]2;[build] 31/37[build - 41.3] [jsk_rviz_plugins - 2.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 19%] Generating EusLisp manifest code for map_msgs | |
]2;[build] 31/37[build - 41.3] [jsk_rviz_plugins - 2.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 19%] Generating EusLisp code from nav_msgs/MapMetaData.msg | |
]2;[build] 31/37[build - 41.4] [jsk_rviz_plugins - 2.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 19%] Generating EusLisp manifest code for map_msgs | |
]2;[build] 31/37[build - 41.4] [jsk_rviz_plugins - 2.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 20%] Generating EusLisp code from nav_msgs/MapMetaData.msg | |
]2;[build] 31/37[build - 41.4] [jsk_rviz_plugins - 2.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 20%] Generating EusLisp code from nav_msgs/OccupancyGrid.msg | |
]2;[build] 31/37[build - 41.5] [jsk_rviz_plugins - 2.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 20%] Generating EusLisp code from nav_msgs/Odometry.msg | |
]2;[build] 31/37[build - 41.6] [jsk_rviz_plugins - 3.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 21%] Generating EusLisp code from nav_msgs/Path.msg | |
]2;[build] 31/37[build - 41.7] [jsk_rviz_plugins - 3.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 21%] Generating EusLisp code from nav_msgs/GetMapAction.msg | |
]2;[build] 31/37[build - 41.7] [jsk_rviz_plugins - 3.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 21%] Generating EusLisp code from nav_msgs/GetMapActionGoal.msg | |
]2;[build] 31/37[build - 41.7] [jsk_rviz_plugins - 3.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 41.8] [jsk_rviz_plugins - 3.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 41.8] [jsk_rviz_plugins - 3.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 21%] Generating EusLisp code from nav_msgs/GetMapActionResult.msg | |
]2;[build] 31/37[build - 41.8] [jsk_rviz_plugins - 3.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 22%] Generating EusLisp code from nav_msgs/GetMapActionFeedback.msg | |
]2;[build] 31/37[build - 41.9] [jsk_rviz_plugins - 3.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 22%] Generating EusLisp code from nav_msgs/GetMapGoal.msg | |
]2;[build] 31/37[build - 41.9] [jsk_rviz_plugins - 3.3] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 22%] Built target diagnostic_msgs_generate_messages_eus | |
]2;[build] 31/37[build - 42.0] [jsk_rviz_plugins - 3.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 22%] Generating EusLisp code from nav_msgs/GetMapResult.msg | |
]2;[build] 31/37[build - 42.0] [jsk_rviz_plugins - 3.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 22%] Generating EusLisp code from nav_msgs/MapMetaData.msg | |
]2;[build] 31/37[build - 42.0] [jsk_rviz_plugins - 3.4] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.1] [jsk_rviz_plugins - 3.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 23%] Generating EusLisp code from nav_msgs/GetMapFeedback.msg | |
]2;[build] 31/37[build - 42.1] [jsk_rviz_plugins - 3.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 23%] Generating EusLisp code from nav_msgs/GetMap.srv | |
]2;[build] 31/37[build - 42.1] [jsk_rviz_plugins - 3.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 23%] Generating EusLisp code from nav_msgs/GetMapGoal.msg | |
]2;[build] 31/37[build - 42.1] [jsk_rviz_plugins - 3.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 23%] Generating EusLisp code from nav_msgs/GetMapFeedback.msg | |
]2;[build] 31/37[build - 42.2] [jsk_rviz_plugins - 3.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 23%] Generating EusLisp code from nav_msgs/GetPlan.srv | |
]2;[build] 31/37[build - 42.2] [jsk_rviz_plugins - 3.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 23%] Generating EusLisp code from nav_msgs/GetMap.srv | |
]2;[build] 31/37[build - 42.2] [jsk_rviz_plugins - 3.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 24%] Generating EusLisp code from nav_msgs/GetPlan.srv | |
]2;[build] 31/37[build - 42.2] [jsk_rviz_plugins - 3.6] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 24%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.2] [jsk_rviz_plugins - 3.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp manifest code for nav_msgs | |
]2;[build] 31/37[build - 42.3] [jsk_rviz_plugins - 3.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 25%] [ 25%] Generating EusLisp code from nodelet/NodeletList.srv | |
]2;[build] 31/37[build - 42.3] [jsk_rviz_plugins - 3.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from map_msgs/GetMapROI.srv | |
]2;[build] 31/37[build - 42.3] [jsk_rviz_plugins - 3.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 25%] Generating EusLisp manifest code for nav_msgs | |
]2;[build] 31/37[build - 42.3] [jsk_rviz_plugins - 3.7] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 25%] Generating EusLisp code from nodelet/NodeletLoad.srv | |
]2;[build] 31/37[build - 42.3] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 26%] Generating EusLisp manifest code for map_msgs | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 26%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp code from nodelet/NodeletUnload.srv | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 27%] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp manifest code for nodelet | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 27%] Generating EusLisp code from pcl_msgs/ModelCoefficients.msg | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 27%] Generating EusLisp code from pcl_msgs/PointIndices.msg | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 28%] Generating EusLisp code from nav_msgs/OccupancyGrid.msg | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 29%] Generating EusLisp code from pcl_msgs/PolygonMesh.msg | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 29%] Generating EusLisp manifest code for nav_msgs | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 29%] Built target map_msgs_generate_messages_eus | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 29%] [ 29%] Generating EusLisp manifest code for nav_msgs | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 32%] Generating EusLisp code from nodelet/NodeletList.srv | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Built target jsk_rviz_plugins_generate_messages_cpp | |
]2;[build] 31/37[build - 42.4] [jsk_rviz_plugins - 3.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 36%] Built target jsk_rviz_plugins_generate_messages_py | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 39%] Built target jsk_rviz_plugins_generate_messages_lisp | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 39%] Generating EusLisp manifest code for nodelet | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 39%] Built target jsk_rviz_plugins_gencpp | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 71%] Built target jsk_rviz_plugins | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 71%] Generating EusLisp code from pcl_msgs/Vertices.msg | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 71%] Generating EusLisp manifest code for pcl_msgs | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 71%] Generating EusLisp code from jsk_rviz_plugins/OverlayText.msg | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 72%] [ 72%] Generating EusLisp code from jsk_rviz_plugins/ObjectFitCommand.msg | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp manifest code for nodelet | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 72%] [ 73%] Generating EusLisp code from jsk_rviz_plugins/PictogramArray.msg | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] Generating EusLisp manifest code for pcl_msgs | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 73%] Generating EusLisp code from jsk_rviz_plugins/Pictogram.msg | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 3.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 74%] Generating EusLisp code from jsk_rviz_plugins/OverlayMenu.msg | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.5] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 74%] Generating EusLisp code from jsk_rviz_plugins/TransformableMarkerOperate.msg | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 74%] Generating EusLisp code from jsk_rviz_plugins/RecordCommand.msg | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 74%] Generating EusLisp code from jsk_rviz_plugins/Screenshot.srv | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 75%] Generating EusLisp code from jsk_rviz_plugins/RequestMarkerOperate.srv | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 75%] Generating EusLisp code from jsk_rviz_plugins/EusCommand.srv | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 79%] Built target nav_msgs_generate_messages_eus | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 79%] Generating EusLisp manifest code for jsk_rviz_plugins | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 87%] Built target nodelet_generate_messages_eus | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.6] [jsk_rviz_plugins - 4.0] [1/8 Active | 31/37 Completed] | |
]2;[build] 31/37[build - 42.7] [jsk_rviz_plugins - 4.1] [1/8 Active | 31/37 Completed] | |
]2;[build] 31/37[build - 42.8] [jsk_rviz_plugins - 4.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 42.9] [jsk_rviz_plugins - 4.3] [1/8 Active | 31/37 Completed] | |
]2;[build] 31/37[build - 43.0] [jsk_rviz_plugins - 4.4] [1/8 Active | 31/37 Completed] | |
]2;[build] 31/37[build - 43.1] [jsk_rviz_plugins - 4.5] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 43.2] [jsk_rviz_plugins - 4.6] [1/8 Active | 31/37 Completed] | |
]2;[build] 31/37[build - 43.3] [jsk_rviz_plugins - 4.7] [1/8 Active | 31/37 Completed] | |
]2;[build] 31/37[build - 43.4] [jsk_rviz_plugins - 4.8] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [ 98%] Built target pcl_msgs_generate_messages_eus | |
]2;[build] 31/37[build - 43.4] [jsk_rviz_plugins - 4.8] [1/8 Active | 31/37 Completed] | |
]2;[build] 31/37[build - 43.5] [jsk_rviz_plugins - 4.9] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 31/37[build - 43.5] [jsk_rviz_plugins - 4.9] [1/8 Active | 31/37 Completed] | |
]2;[build] 31/37[build - 43.6] [jsk_rviz_plugins - 5.0] [1/8 Active | 31/37 Completed] | |
]2;[build] 31/37[build - 43.7] [jsk_rviz_plugins - 5.1] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [100%] Built target jsk_rviz_plugins_generate_messages_eus | |
]2;[build] 31/37[build - 43.8] [jsk_rviz_plugins - 5.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] [100%] Built target jsk_rviz_plugins_generate_messages | |
]2;[build] 31/37[build - 43.8] [jsk_rviz_plugins - 5.2] [1/8 Active | 31/37 Completed] | |
[jsk_rviz_plugins] <== '/home/garaemon/ros/hydro/build/jsk_rviz_plugins/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 31/37[build - 43.8] [jsk_rviz_plugins - 5.2] [1/8 Active | 31/37 Completed] | |
Finished <== jsk_rviz_plugins [ 5.2 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 32/37[build - 43.8] [0/8 Active | 32/37 Completed] | |
Starting ==> jsk_footstep_planner | |
]2;[build] 32/37[build - 43.8] [jsk_footstep_planner - 0.0] [1/8 Active | 32/37 Completed] | |
[jsk_footstep_planner] ==> '/home/garaemon/ros/hydro/build/jsk_footstep_planner/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_footstep_planner' | |
]2;[build] 32/37[build - 43.8] [jsk_footstep_planner - 0.0] [1/8 Active | 32/37 Completed] | |
Starting ==> jsk_interactive_marker | |
]2;[build] 32/37[build - 43.8] [jsk_footstep_planner - 0.0] [jsk_interactive_marker - 0.0] | |
[jsk_interactive_marker] ==> '/home/garaemon/ros/hydro/build/jsk_interactive_marker/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_interactive_marker' | |
]2;[build] 32/37[build - 43.8] [jsk_footstep_planner - 0.0] [jsk_interactive_marker - 0.0] | |
[jsk_footstep_planner] <== '/home/garaemon/ros/hydro/build/jsk_footstep_planner/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 32/37[build - 43.9] [jsk_footstep_planner - 0.1] [jsk_interactive_marker - 0.1] | |
[jsk_footstep_planner] ==> '/home/garaemon/ros/hydro/build/jsk_footstep_planner/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_footstep_planner' | |
]2;[build] 32/37[build - 43.9] [jsk_footstep_planner - 0.1] [jsk_interactive_marker - 0.1] | |
[jsk_interactive_marker] <== '/home/garaemon/ros/hydro/build/jsk_interactive_marker/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 32/37[build - 43.9] [jsk_footstep_planner - 0.1] [jsk_interactive_marker - 0.1] | |
[jsk_interactive_marker] ==> '/home/garaemon/ros/hydro/build/jsk_interactive_marker/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_interactive_marker' | |
]2;[build] 32/37[build - 43.9] [jsk_footstep_planner - 0.1] [jsk_interactive_marker - 0.1] | |
[jsk_footstep_planner] [ 33%] [ 50%] [ 66%] Built target jsk_footstep_planner_generate_messages_py | |
]2;[build] 32/37[build - 44.0] [jsk_footstep_planner - 0.2] [jsk_interactive_marker - 0.2] | |
[jsk_footstep_planner] [ 83%] [100%] Built target jsk_footstep_planner_generate_messages_cpp | |
]2;[build] 32/37[build - 44.0] [jsk_footstep_planner - 0.2] [jsk_interactive_marker - 0.2] | |
[jsk_footstep_planner] Built target jsk_footstep_planner_generate_messages_lisp | |
]2;[build] 32/37[build - 44.0] [jsk_footstep_planner - 0.2] [jsk_interactive_marker - 0.2] | |
[jsk_footstep_planner] Generating EusLisp manifest code for jsk_footstep_planner | |
]2;[build] 32/37[build - 44.0] [jsk_footstep_planner - 0.2] [jsk_interactive_marker - 0.2] | |
[jsk_footstep_planner] Generating EusLisp code from jsk_footstep_planner/ChangeSuccessor.srv | |
]2;[build] 32/37[build - 44.0] [jsk_footstep_planner - 0.2] [jsk_interactive_marker - 0.2] | |
[jsk_interactive_marker] [ 0%] [ 0%] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.0] [jsk_footstep_planner - 0.2] [jsk_interactive_marker - 0.2] | |
[jsk_interactive_marker] Built target jsk_recognition_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.0] [jsk_footstep_planner - 0.2] [jsk_interactive_marker - 0.2] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] [ 0%] Built target jsk_footstep_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.2] [jsk_interactive_marker - 0.2] | |
[jsk_interactive_marker] Built target dynamic_tf_publisher_generate_messages_cpp | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.2] | |
[jsk_interactive_marker] [ 0%] Built target jsk_pcl_ros_generate_messages_cpp | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.2] | |
[jsk_interactive_marker] Built target jsk_pcl_ros_generate_messages_eus | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] [ 0%] Built target visualization_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] Built target jsk_pcl_ros_gencfg | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] Built target pcl_ros_gencfg | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] Built target dynamic_reconfigure_generate_messages_lisp | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] Built target jsk_rviz_plugins_generate_messages_eus | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] [ 0%] [ 0%] Built target jsk_pcl_ros_generate_messages_py | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] Built target jsk_recognition_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] Built target jsk_pcl_ros_generate_messages_lisp | |
]2;[build] 32/37[build - 44.1] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] Built target jsk_footstep_msgs_generate_messages_eus | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.3] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] Built target jsk_footstep_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.3] | |
[jsk_interactive_marker] [ 0%] Built target dynamic_tf_publisher_gencfg | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] [ 0%] Built target dynamic_reconfigure_generate_messages_cpp | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] [ 0%] [ 0%] Built target jsk_recognition_msgs_generate_messages_eus | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] Built target nodelet_generate_messages_cpp | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] Built target map_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] Built target jsk_recognition_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] Built target pcl_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] [ 0%] [ 0%] Built target nav_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] Built target roseus_generate_messages_eus | |
]2;[build] 32/37[build - 44.2] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] [ 0%] [ 0%] Built target nav_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.3] [jsk_footstep_planner - 0.4] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] Built target dynamic_reconfigure_generate_messages_py | |
]2;[build] 32/37[build - 44.3] [jsk_footstep_planner - 0.5] [jsk_interactive_marker - 0.4] | |
[jsk_interactive_marker] Built target dynamic_reconfigure_gencfg | |
]2;[build] 32/37[build - 44.3] [jsk_footstep_planner - 0.5] [jsk_interactive_marker - 0.5] | |
[jsk_interactive_marker] Built target roscpp_generate_messages_cpp | |
]2;[build] 32/37[build - 44.3] [jsk_footstep_planner - 0.5] [jsk_interactive_marker - 0.5] | |
[jsk_interactive_marker] Built target bond_generate_messages_lisp | |
]2;[build] 32/37[build - 44.3] [jsk_footstep_planner - 0.5] [jsk_interactive_marker - 0.5] | |
[jsk_interactive_marker] [ 0%] Built target pcl_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.3] [jsk_footstep_planner - 0.5] [jsk_interactive_marker - 0.5] | |
[jsk_interactive_marker] [ 0%] [ 0%] Built target rosgraph_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.4] [jsk_footstep_planner - 0.6] [jsk_interactive_marker - 0.5] | |
[jsk_interactive_marker] Built target pcl_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.4] [jsk_footstep_planner - 0.6] [jsk_interactive_marker - 0.5] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] Built target tf_generate_messages_py | |
]2;[build] 32/37[build - 44.4] [jsk_footstep_planner - 0.6] [jsk_interactive_marker - 0.6] | |
[jsk_interactive_marker] [ 0%] Built target nodelet_generate_messages_lisp | |
]2;[build] 32/37[build - 44.4] [jsk_footstep_planner - 0.6] [jsk_interactive_marker - 0.6] | |
[jsk_interactive_marker] Built target roscpp_generate_messages_py | |
]2;[build] 32/37[build - 44.4] [jsk_footstep_planner - 0.6] [jsk_interactive_marker - 0.6] | |
[jsk_interactive_marker] Built target rosgraph_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.4] [jsk_footstep_planner - 0.6] [jsk_interactive_marker - 0.6] | |
[jsk_interactive_marker] [ 0%] [ 0%] Built target rosgraph_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.5] [jsk_footstep_planner - 0.7] [jsk_interactive_marker - 0.6] | |
[jsk_interactive_marker] Built target std_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.5] [jsk_footstep_planner - 0.7] [jsk_interactive_marker - 0.7] | |
[jsk_interactive_marker] [ 0%] [ 0%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.5] [jsk_footstep_planner - 0.7] [jsk_interactive_marker - 0.7] | |
[jsk_interactive_marker] Built target roscpp_generate_messages_lisp | |
]2;[build] 32/37[build - 44.5] [jsk_footstep_planner - 0.7] [jsk_interactive_marker - 0.7] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] Built target std_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.5] [jsk_footstep_planner - 0.7] [jsk_interactive_marker - 0.7] | |
[jsk_interactive_marker] [ 0%] Built target nodelet_generate_messages_py | |
]2;[build] 32/37[build - 44.5] [jsk_footstep_planner - 0.7] [jsk_interactive_marker - 0.7] | |
[jsk_interactive_marker] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.7] [jsk_interactive_marker - 0.7] | |
[jsk_interactive_marker] Built target topic_tools_generate_messages_cpp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] [ 0%] [ 0%] Built target bond_generate_messages_py | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target bond_generate_messages_cpp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] Built target topic_tools_generate_messages_py | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target tf_generate_messages_lisp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target visualization_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] [ 0%] Built target jsk_rviz_plugins_generate_messages_lisp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target jsk_topic_tools_generate_messages_cpp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] [ 0%] [ 0%] Built target jsk_topic_tools_generate_messages_eus | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target topic_tools_generate_messages_lisp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target sensor_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] [ 0%] Built target visualization_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target actionlib_generate_messages_cpp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target tf2_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.6] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target tf_generate_messages_cpp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] [ 0%] [ 0%] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.8] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target geometry_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] [ 0%] [ 0%] Built target actionlib_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] Built target actionlib_generate_messages_lisp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.8] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] Built target std_srvs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target jsk_hark_msgs_generate_messages_eus | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target actionlib_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] [ 0%] Built target actionlib_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 0%] [ 0%] Built target jsk_topic_tools_generate_messages_lisp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target tf2_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target map_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target actionlib_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] [ 0%] [ 0%] [ 3%] Built target nav_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target jsk_footstep_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target jsk_interactive_marker_gencfg | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] [ 3%] [ 3%] [ 3%] [ 3%] Built target dynamic_tf_publisher_generate_messages_lisp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target tf2_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target jsk_hark_msgs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target jsk_rviz_plugins_generate_messages_cpp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] [ 3%] Built target jsk_rviz_plugins_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] [ 3%] [ 3%] [ 3%] [ 3%] Built target roseus_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target map_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target roseus_generate_messages_lisp | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target jsk_hark_msgs_generate_messages_py | |
]2;[build] 32/37[build - 44.7] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] [ 3%] [ 3%] Built target std_srvs_generate_messages_py | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 0.9] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target jsk_hark_msgs_generate_messages_cpp | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] [ 3%] [ 3%] [ 3%] [ 3%] Built target dynamic_tf_publisher_generate_messages_py | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target jsk_topic_tools_generate_messages_py | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] Built target dynamic_tf_publisher_generate_messages_eus | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 0.9] | |
[jsk_interactive_marker] [ 3%] [ 4%] Built target roseus_generate_messages_cpp | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] Built target std_srvs_generate_messages_lisp | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 5%] [ 26%] [ 41%] [ 41%] Built target jsk_interactive_marker_generate_messages_py | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 42%] Generating EusLisp code from jsk_interactive_marker/MarkerDimensions.msg | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 43%] Built target jsk_interactive_marker_generate_messages_lisp | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] Generating EusLisp code from jsk_interactive_marker/JointTrajectoryPointWithType.msg | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] Generating EusLisp code from jsk_interactive_marker/JointTrajectoryWithType.msg | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] Generating EusLisp code from jsk_interactive_marker/MoveObject.msg | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] Generating EusLisp code from jsk_interactive_marker/MarkerPose.msg | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 61%] [ 62%] Built target jsk_interactive_marker_generate_messages_cpp | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 63%] Generating EusLisp code from jsk_interactive_marker/MarkerMenu.msg | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] Generating EusLisp code from jsk_interactive_marker/MoveModel.msg | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 63%] Built target bounding_box_marker | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 63%] Generating EusLisp code from jsk_interactive_marker/SetMarkerDimensions.srv | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 64%] [ 65%] Generating EusLisp code from jsk_interactive_marker/SnapFootPrint.srv | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 66%] Generating EusLisp code from jsk_interactive_marker/GetTransformableMarkerExistence.srv | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] Built target door_foot | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 69%] [ 70%] Built target camera_info_publisher | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 70%] Generating EusLisp code from jsk_interactive_marker/GetType.srv | |
]2;[build] 32/37[build - 44.8] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 72%] Generating EusLisp code from jsk_interactive_marker/GetMarkerDimensions.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.0] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] Built target footstep_marker | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 74%] Built target interactive_marker_interface | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 75%] Built target marker_6dof | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.0] | |
[jsk_interactive_marker] [ 76%] [ 77%] [ 80%] Built target interactive_point_cloud | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] Generating EusLisp code from jsk_interactive_marker/SetTransformableMarkerColor.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] Generating EusLisp code from jsk_interactive_marker/SetTransformableMarkerPose.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 81%] Built target point_cloud_config_marker | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 82%] [ 83%] Generating EusLisp code from jsk_interactive_marker/GetTransformableMarkerFocus.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] Generating EusLisp code from jsk_interactive_marker/IndexRequest.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 84%] Built target pointcloud_cropper | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 86%] Built target transformable_server_sample | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 88%] [ 90%] Built target triangle_foot | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] Built target urdf_control_marker | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 90%] [ 91%] Generating EusLisp code from jsk_interactive_marker/SetTransformableMarkerFocus.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 92%] [ 95%] [ 96%] Generating EusLisp code from jsk_interactive_marker/GetJointState.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] Built target urdf_model_marker | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] Built target world2yaml | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 97%] Generating EusLisp code from jsk_interactive_marker/MarkerSetPose.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 97%] Generating EusLisp code from jsk_interactive_marker/GetTransformableMarkerColor.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] Generating EusLisp code from jsk_interactive_marker/SetPose.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] [ 98%] [100%] Generating EusLisp code from jsk_interactive_marker/GetTransformableMarkerPose.srv | |
]2;[build] 32/37[build - 44.9] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
[jsk_interactive_marker] Generating EusLisp manifest code for jsk_interactive_marker | |
]2;[build] 32/37[build - 45.0] [jsk_footstep_planner - 1.1] [jsk_interactive_marker - 1.1] | |
]2;[build] 32/37[build - 45.1] [jsk_footstep_planner - 1.2] [jsk_interactive_marker - 1.2] | |
]2;[build] 32/37[build - 45.2] [jsk_footstep_planner - 1.4] [jsk_interactive_marker - 1.3] | |
[jsk_footstep_planner] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 32/37[build - 45.2] [jsk_footstep_planner - 1.4] [jsk_interactive_marker - 1.4] | |
]2;[build] 32/37[build - 45.3] [jsk_footstep_planner - 1.5] [jsk_interactive_marker - 1.5] | |
]2;[build] 32/37[build - 45.4] [jsk_footstep_planner - 1.6] [jsk_interactive_marker - 1.6] | |
[jsk_footstep_planner] [100%] Built target jsk_footstep_planner_generate_messages_eus | |
]2;[build] 32/37[build - 45.5] [jsk_footstep_planner - 1.7] [jsk_interactive_marker - 1.7] | |
[jsk_footstep_planner] [100%] Built target jsk_footstep_planner_generate_messages | |
]2;[build] 32/37[build - 45.5] [jsk_footstep_planner - 1.7] [jsk_interactive_marker - 1.7] | |
[jsk_footstep_planner] <== '/home/garaemon/ros/hydro/build/jsk_footstep_planner/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 32/37[build - 45.5] [jsk_footstep_planner - 1.7] [jsk_interactive_marker - 1.7] | |
Finished <== jsk_footstep_planner [ 1.7 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 33/37[build - 45.5] [jsk_interactive_marker - 1.7] [1/8 Active | 33/37 Completed] | |
Starting ==> jsk_footstep_controller | |
]2;[build] 33/37[build - 45.5] [jsk_interactive_marker - 1.7] [jsk_footstep_controller - 0.0] | |
[jsk_footstep_controller] ==> '/home/garaemon/ros/hydro/build/jsk_footstep_controller/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_footstep_controller' | |
]2;[build] 33/37[build - 45.5] [jsk_interactive_marker - 1.7] [jsk_footstep_controller - 0.0] | |
[jsk_interactive_marker] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 33/37[build - 45.6] [jsk_interactive_marker - 1.7] [jsk_footstep_controller - 0.0] | |
[jsk_footstep_controller] <== '/home/garaemon/ros/hydro/build/jsk_footstep_controller/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 33/37[build - 45.6] [jsk_interactive_marker - 1.8] [jsk_footstep_controller - 0.1] | |
[jsk_footstep_controller] ==> '/home/garaemon/ros/hydro/build/jsk_footstep_controller/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_footstep_controller' | |
]2;[build] 33/37[build - 45.6] [jsk_interactive_marker - 1.8] [jsk_footstep_controller - 0.1] | |
[jsk_footstep_controller] [ 0%] [ 0%] [ 0%] Built target actionlib_msgs_generate_messages_py | |
]2;[build] 33/37[build - 45.7] [jsk_interactive_marker - 1.9] [jsk_footstep_controller - 0.2] | |
[jsk_footstep_controller] Built target std_msgs_generate_messages_cpp | |
]2;[build] 33/37[build - 45.7] [jsk_interactive_marker - 1.9] [jsk_footstep_controller - 0.2] | |
[jsk_footstep_controller] [ 0%] [ 2%] [ 4%] [ 4%] [ 6%] Built target actionlib_msgs_generate_messages_cpp | |
]2;[build] 33/37[build - 45.7] [jsk_interactive_marker - 1.9] [jsk_footstep_controller - 0.2] | |
[jsk_footstep_controller] [ 6%] Built target std_msgs_generate_messages_py | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 1.9] [jsk_footstep_controller - 0.2] | |
[jsk_footstep_controller] Built target actionlib_msgs_generate_messages_lisp | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 1.9] [jsk_footstep_controller - 0.2] | |
[jsk_footstep_controller] [ 9%] Built target std_msgs_generate_messages_lisp | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] Generating EusLisp code from jsk_footstep_controller/LookAroundGroundActionResult.msg | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] Generating EusLisp code from jsk_footstep_controller/LookAroundGroundGoal.msg | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] Generating EusLisp code from jsk_footstep_controller/LookAroundGroundActionFeedback.msg | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] [ 11%] Generating EusLisp code from jsk_footstep_controller/LookAroundGroundAction.msg | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] [ 34%] [ 61%] [ 84%] Built target jsk_footstep_controller_generate_messages_cpp | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] Generating EusLisp code from jsk_footstep_controller/LookAroundGroundActionGoal.msg | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] Built target jsk_footstep_controller_generate_messages_py | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] Built target jsk_footstep_controller_generate_messages_lisp | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] [ 86%] [ 88%] [ 88%] Generating EusLisp code from jsk_footstep_controller/LookAroundGroundResult.msg | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] Generating EusLisp code from jsk_footstep_controller/GroundContactState.msg | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] Built target jsk_footstep_controller_gencpp | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] [ 90%] Generating EusLisp code from jsk_footstep_controller/LookAroundGroundFeedback.msg | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] [ 93%] Generating EusLisp code from jsk_footstep_controller/RequireMonitorStatus.srv | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] [ 95%] [ 97%] Built target footcoords | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] [100%] Generating EusLisp code from jsk_footstep_controller/RequireLog.srv | |
]2;[build] 33/37[build - 45.8] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_footstep_controller] Generating EusLisp manifest code for jsk_footstep_controller | |
]2;[build] 33/37[build - 45.9] [jsk_interactive_marker - 2.0] [jsk_footstep_controller - 0.3] | |
[jsk_interactive_marker] [100%] Built target jsk_interactive_marker_generate_messages_eus | |
]2;[build] 33/37[build - 46.0] [jsk_interactive_marker - 2.1] [jsk_footstep_controller - 0.4] | |
[jsk_interactive_marker] [100%] Built target jsk_interactive_marker_generate_messages | |
]2;[build] 33/37[build - 46.0] [jsk_interactive_marker - 2.1] [jsk_footstep_controller - 0.4] | |
[jsk_interactive_marker] <== '/home/garaemon/ros/hydro/build/jsk_interactive_marker/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 33/37[build - 46.0] [jsk_interactive_marker - 2.1] [jsk_footstep_controller - 0.4] | |
Finished <== jsk_interactive_marker [ 2.1 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 34/37[build - 46.0] [jsk_footstep_controller - 0.5] [1/8 Active | 34/37 Completed] | |
Starting ==> jsk_teleop_joy | |
]2;[build] 34/37[build - 46.0] [jsk_footstep_controller - 0.5] [jsk_teleop_joy - 0.0] | |
[jsk_teleop_joy] ==> '/home/garaemon/ros/hydro/build/jsk_teleop_joy/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/jsk_teleop_joy' | |
]2;[build] 34/37[build - 46.0] [jsk_footstep_controller - 0.5] [jsk_teleop_joy - 0.0] | |
[jsk_teleop_joy] <== '/home/garaemon/ros/hydro/build/jsk_teleop_joy/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 34/37[build - 46.1] [jsk_footstep_controller - 0.5] [jsk_teleop_joy - 0.1] | |
[jsk_teleop_joy] ==> '/home/garaemon/ros/hydro/build/jsk_teleop_joy/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/jsk_teleop_joy' | |
]2;[build] 34/37[build - 46.1] [jsk_footstep_controller - 0.5] [jsk_teleop_joy - 0.1] | |
[jsk_teleop_joy] <== '/home/garaemon/ros/hydro/build/jsk_teleop_joy/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 34/37[build - 46.1] [jsk_footstep_controller - 0.6] [jsk_teleop_joy - 0.2] | |
Finished <== jsk_teleop_joy [ 0.2 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 35/37[build - 46.1] [jsk_footstep_controller - 0.6] [1/8 Active | 35/37 Completed] | |
]2;[build] 35/37[build - 46.2] [jsk_footstep_controller - 0.7] [1/8 Active | 35/37 Completed] | |
]2;[build] 35/37[build - 46.3] [jsk_footstep_controller - 0.8] [1/8 Active | 35/37 Completed] | |
]2;[build] 35/37[build - 46.4] [jsk_footstep_controller - 0.9] [1/8 Active | 35/37 Completed] | |
[jsk_footstep_controller] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 35/37[build - 46.5] [jsk_footstep_controller - 0.9] [1/8 Active | 35/37 Completed] | |
]2;[build] 35/37[build - 46.6] [jsk_footstep_controller - 1.0] [1/8 Active | 35/37 Completed] | |
]2;[build] 35/37[build - 46.7] [jsk_footstep_controller - 1.2] [1/8 Active | 35/37 Completed] | |
[jsk_footstep_controller] [100%] Built target jsk_footstep_controller_generate_messages_eus | |
]2;[build] 35/37[build - 46.8] [jsk_footstep_controller - 1.3] [1/8 Active | 35/37 Completed] | |
[jsk_footstep_controller] [100%] Built target jsk_footstep_controller_generate_messages | |
]2;[build] 35/37[build - 46.8] [jsk_footstep_controller - 1.3] [1/8 Active | 35/37 Completed] | |
[jsk_footstep_controller] <== '/home/garaemon/ros/hydro/build/jsk_footstep_controller/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 35/37[build - 46.8] [jsk_footstep_controller - 1.3] [1/8 Active | 35/37 Completed] | |
Finished <== jsk_footstep_controller [ 1.3 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 36/37[build - 46.8] [0/8 Active | 36/37 Completed] | |
Starting ==> drc_task_common | |
]2;[build] 36/37[build - 46.8] [drc_task_common - 0.0] [1/8 Active | 36/37 Completed] | |
[drc_task_common] ==> '/home/garaemon/ros/hydro/build/drc_task_common/build_env.sh /usr/bin/make cmake_check_build_system' in '/home/garaemon/ros/hydro/build/drc_task_common' | |
]2;[build] 36/37[build - 46.8] [drc_task_common - 0.0] [1/8 Active | 36/37 Completed] | |
[drc_task_common] <== '/home/garaemon/ros/hydro/build/drc_task_common/build_env.sh /usr/bin/make cmake_check_build_system' finished with return code '0' | |
]2;[build] 36/37[build - 46.9] [drc_task_common - 0.1] [1/8 Active | 36/37 Completed] | |
[drc_task_common] ==> '/home/garaemon/ros/hydro/build/drc_task_common/build_env.sh /usr/bin/make -j8 -l8' in '/home/garaemon/ros/hydro/build/drc_task_common' | |
]2;[build] 36/37[build - 46.9] [drc_task_common - 0.1] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 2%] [ 2%] [ 4%] [ 4%] [ 5%] Built target gun_drill_dae | |
]2;[build] 36/37[build - 47.0] [drc_task_common - 0.2] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target takenoko_drill_model | |
]2;[build] 36/37[build - 47.0] [drc_task_common - 0.2] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target takenoko_drill_jpg | |
]2;[build] 36/37[build - 47.0] [drc_task_common - 0.2] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target gun_drill_model | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.2] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target drill_pcd | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.2] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 7%] [ 7%] Built target takenoko_drill_dae | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.2] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target gun_drill_jpg | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.3] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 7%] [ 7%] Built target jsk_pcl_ros_generate_messages_cpp | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.3] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target jsk_recognition_msgs_generate_messages_cpp | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.3] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 7%] [ 7%] [ 7%] [ 7%] [ 7%] Built target std_msgs_generate_messages_cpp | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.3] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target sensor_msgs_generate_messages_cpp | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.3] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target geometry_msgs_generate_messages_cpp | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.3] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target std_srvs_generate_messages_cpp | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.3] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target visualization_msgs_generate_messages_cpp | |
]2;[build] 36/37[build - 47.1] [drc_task_common - 0.3] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 7%] [ 7%] [ 7%] Built target jsk_interactive_marker_generate_messages_cpp | |
]2;[build] 36/37[build - 47.2] [drc_task_common - 0.3] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 7%] [ 7%] Built target std_srvs_generate_messages_lisp | |
]2;[build] 36/37[build - 47.2] [drc_task_common - 0.4] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target std_msgs_generate_messages_lisp | |
]2;[build] 36/37[build - 47.2] [drc_task_common - 0.4] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target move_base_msgs_generate_messages_cpp | |
]2;[build] 36/37[build - 47.2] [drc_task_common - 0.4] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target geometry_msgs_generate_messages_lisp | |
]2;[build] 36/37[build - 47.2] [drc_task_common - 0.4] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] Built target drc_task_common_gencfg | |
]2;[build] 36/37[build - 47.2] [drc_task_common - 0.4] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] Built target jsk_interactive_marker_generate_messages_lisp | |
]2;[build] 36/37[build - 47.2] [drc_task_common - 0.4] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] [ 13%] Built target jsk_recognition_msgs_generate_messages_lisp | |
]2;[build] 36/37[build - 47.2] [drc_task_common - 0.4] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] Built target sensor_msgs_generate_messages_lisp | |
]2;[build] 36/37[build - 47.2] [drc_task_common - 0.4] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] Built target jsk_pcl_ros_generate_messages_lisp | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.4] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target move_base_msgs_generate_messages_lisp | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] Built target visualization_msgs_generate_messages_lisp | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] [ 13%] Built target jsk_interactive_marker_generate_messages_eus | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target jsk_interactive_marker_generate_messages_py | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] Built target jsk_recognition_msgs_generate_messages_eus | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] [ 13%] [ 13%] Built target std_msgs_generate_messages_py | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target jsk_pcl_ros_generate_messages_eus | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target geometry_msgs_generate_messages_py | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] Built target jsk_pcl_ros_generate_messages_py | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] Built target std_srvs_generate_messages_py | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 13%] [ 13%] [ 30%] [ 30%] [ 30%] [ 30%] Built target sensor_msgs_generate_messages_py | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target jsk_recognition_msgs_generate_messages_py | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target visualization_msgs_generate_messages_py | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target all_drc_task_common_downloads | |
]2;[build] 36/37[build - 47.3] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target drc_task_common_generate_messages_lisp | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target move_base_msgs_generate_messages_py | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 47%] Built target drc_task_common_generate_messages_cpp | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 55%] [ 67%] Built target drc_task_common_gencpp | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target drc_task_common_generate_messages_py | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 68%] [ 69%] [ 70%] Generating EusLisp code from drc_task_common/StringMultiArray.msg | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Generating EusLisp code from drc_task_common/TMarkerInfo.msg | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Generating EusLisp code from drc_task_common/Float32ArrayStamped.msg | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 72%] [ 73%] Built target passthrough_car_body | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 74%] Built target kdtree_obstacle | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target manipulation_data_visualizer | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 75%] [ 79%] Generating EusLisp code from drc_task_common/DRCParametersMessage.msg | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target drc_task_common | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 82%] [ 82%] Built target manipulation_data_server | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 83%] Generating EusLisp code from drc_task_common/InteractiveMarkerArray.msg | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 84%] Generating EusLisp code from drc_task_common/Int8Float64.msg | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target simplified_local_planner_mochikae | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 85%] [ 86%] [ 87%] Generating EusLisp code from drc_task_common/GetIKArm.srv | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target standing_drill_detector | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Generating EusLisp code from drc_task_common/GoPosCommand.srv | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 89%] [ 89%] Built target switch_input_cloud | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 90%] [ 91%] Generating EusLisp code from drc_task_common/RvizMenuSelect.srv | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Built target visual_odometry_verification | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 92%] Generating EusLisp code from drc_task_common/Uint8Request.srv | |
]2;[build] 36/37[build - 47.4] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Generating EusLisp code from drc_task_common/GetIKArmPose.srv | |
]2;[build] 36/37[build - 47.5] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 93%] [ 94%] Generating EusLisp code from drc_task_common/EusCommand.srv | |
]2;[build] 36/37[build - 47.5] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Generating EusLisp code from drc_task_common/RvizMenuCall.srv | |
]2;[build] 36/37[build - 47.5] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 95%] [ 96%] Generating EusLisp code from drc_task_common/SetValue.srv | |
]2;[build] 36/37[build - 47.5] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 97%] Generating EusLisp code from drc_task_common/StringRequest.srv | |
]2;[build] 36/37[build - 47.5] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [ 98%] Generating EusLisp code from drc_task_common/AngleVectorCommand.srv | |
]2;[build] 36/37[build - 47.5] [drc_task_common - 0.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] Generating EusLisp code from drc_task_common/ICPService.srv | |
]2;[build] 36/37[build - 47.5] [drc_task_common - 0.7] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [100%] Generating EusLisp manifest code for drc_task_common | |
]2;[build] 36/37[build - 47.5] [drc_task_common - 0.7] [1/8 Active | 36/37 Completed] | |
]2;[build] 36/37[build - 47.6] [drc_task_common - 0.8] [1/8 Active | 36/37 Completed] | |
]2;[build] 36/37[build - 47.7] [drc_task_common - 0.9] [1/8 Active | 36/37 Completed] | |
]2;[build] 36/37[build - 47.8] [drc_task_common - 1.0] [1/8 Active | 36/37 Completed] | |
]2;[build] 36/37[build - 47.9] [drc_task_common - 1.1] [1/8 Active | 36/37 Completed] | |
[drc_task_common] WARNING: Package "ompl" does not follow the version conventions. It should not contain leading zeros (unless the number is 0). | |
]2;[build] 36/37[build - 48.0] [drc_task_common - 1.2] [1/8 Active | 36/37 Completed] | |
]2;[build] 36/37[build - 48.1] [drc_task_common - 1.3] [1/8 Active | 36/37 Completed] | |
]2;[build] 36/37[build - 48.2] [drc_task_common - 1.4] [1/8 Active | 36/37 Completed] | |
]2;[build] 36/37[build - 48.3] [drc_task_common - 1.5] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [100%] Built target drc_task_common_generate_messages_eus | |
]2;[build] 36/37[build - 48.4] [drc_task_common - 1.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] [100%] Built target drc_task_common_generate_messages | |
]2;[build] 36/37[build - 48.4] [drc_task_common - 1.6] [1/8 Active | 36/37 Completed] | |
[drc_task_common] <== '/home/garaemon/ros/hydro/build/drc_task_common/build_env.sh /usr/bin/make -j8 -l8' finished with return code '0' | |
]2;[build] 36/37[build - 48.4] [drc_task_common - 1.6] [1/8 Active | 36/37 Completed] | |
Finished <== drc_task_common [ 1.6 seconds ] | |
[build] Calculating new jobs... | |
]2;[build] 37/37[build - 48.4] [0/8 Active | 37/37 Completed] | |
]2;[build] 37/37[build - 48.4] [0/7 Active | 37/37 Completed] | |
]2;[build] 37/37[build - 48.4] [0/6 Active | 37/37 Completed] | |
]2;[build] 37/37[build - 48.4] [0/5 Active | 37/37 Completed] | |
]2;[build] 37/37[build - 48.4] [0/4 Active | 37/37 Completed] | |
]2;[build] 37/37[build - 48.4] [0/3 Active | 37/37 Completed] | |
]2;[build] 37/37[build - 48.4] [0/2 Active | 37/37 Completed] | |
]2;[build] 37/37[build - 48.4] [0/1 Active | 37/37 Completed] | |
]2;[build] 37/37[build - 48.4] [0/0 Active | 37/37 Completed] | |
]2;[build] Finished. | |
[build] Runtime: 49.4 seconds | |
% | |
]2;garaemon@ueda-w541: ~/ros/hydro/src/jsk-ros-pkg/jsk_demos/jsk_2015_06_hrp_drc/drc_task_common]1;..c_task_common | |
[J[0;38;5;231;48;5;6m master [0;38;5;6;48;5;2;22m [0;38;5;15;48;5;2mjsk.hydro [0;38;5;15;48;5;2;22m [0;38;5;15;48;5;2mhydro [0;38;5;15;48;5;2;22m [0;38;5;15;48;5;2mhttp://localhost:11311 [0;38;5;2;48;5;0;22m [0;38;5;15;48;5;0;1m | |
[0;38;5;0;48;5;24;22m [0;38;5;7;48;5;24m⋯ [0;38;5;14;48;5;24;22m [0;38;5;7;48;5;24mjsk_demos [0;38;5;14;48;5;24;22m [0;38;5;7;48;5;24mjsk_2015_06_hrp_drc [0;38;5;14;48;5;24;22m [0;38;5;15;48;5;24;1mdrc_task_common [0;38;5;24;48;5;0;22m [0;38;5;15;48;5;0;1m | |
[0;38;5;0;48;5;4;22m [0;38;5;15;48;5;4;1mgaraemon [0;38;5;4;48;5;24;22m [0;38;5;15;48;5;24m@ueda-w541: [0;38;5;24;48;5;0;22m [0;38;5;15;48;5;0;1mYes, Master? [0;38;5;0;49;22m | |
$ [?1h= | |
Script done on Wed 06 May 2015 01:11:17 PM JST |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment