I'm not sure whether this is intentional, but the console output of the groovy-dev job seems to indicate that it only builds the industrial_core packages, even though it also checks out the abb, fanuc, motoman and universal_robot repositories.
This is probably due to the fact that the build_catkin_workspace.sh script runs catkin by invoking:
echo "============ Building catkin workspace ============"
catkin_make clean
catkin_make run_tests
Since none of the other packages declare any tests, they don't get built. IMO even just building those packages would provide valuable information, so could this be changed to just invoke catkin_make?
I'm not sure whether this is intentional, but the console output of the groovy-dev job seems to indicate that it only builds the
industrial_core
packages, even though it also checks out theabb
,fanuc
,motoman
anduniversal_robot
repositories.This is probably due to the fact that the
build_catkin_workspace.sh
script runs catkin by invoking:Since none of the other packages declare any tests, they don't get built. IMO even just building those packages would provide valuable information, so could this be changed to just invoke
catkin_make
?