-
Notifications
You must be signed in to change notification settings - Fork 7
"No names found, cannot describe anything." error #26
Description
Hello;
i am trying to simulate robot like explained in readme.So i typed followings:
mkdir -p test_ws/src
cd test_ws/src
catkin_init_workspace
git clone --recursive https://github.com/stack-of-tasks/talos_integration_tests.git
cd ..
catkin config --install
Untill here everything went well.After that i typed like here and get some errors:
emre@emre:~/test_ws$ catkin build talos_integration_tests --cmake-args -DPYTHON_STANDARD_LAYOUT:BOOL=ON -DPYTHON_DEB_LAYOUT:BOOL=OFF -DSETUPTOOLS_DEB_LAYOUT:BOOL=OFF
Profile: default
Extending: [cached] /opt/ros/melodic
Workspace: /home/emre/test_ws
Build Space: [exists] /home/emre/test_ws/build
Devel Space: [exists] /home/emre/test_ws/devel
Install Space: [exists] /home/emre/test_ws/install
Log Space: [exists] /home/emre/test_ws/logs
Source Space: [exists] /home/emre/test_ws/src
DESTDIR: [unused] None
Devel Space Layout: linked
Install Space Layout: merged
Additional CMake Args: -DPYTHON_STANDARD_LAYOUT:BOOL=ON -DPYTHON_DEB_LAYOUT:BOOL=OFF -DSETUPTOOLS_DEB_LAYOUT:BOOL=OFF
Additional Make Args: None
Additional catkin Make Args: None
Internal Make Job Server: True
Cache Job Environments: False
Whitelisted Packages: None
Blacklisted Packages: None
Workspace configuration appears valid.
[build] Found '1' packages in 0.0 seconds.
Starting >>> talos_integration_tests
Errors << talos_integration_tests:cmake /home/emre/test_ws/logs/talos_integration_tests/build.cmake.004.log
CMake Warning (dev) at cmake/version.cmake:127 (MESSAGE):
Warning: failed to compute the version number, 'git describe' failed:
fatal: No names found, cannot describe anything.
Call Stack (most recent call first):
cmake/base.cmake:123 (VERSION_COMPUTE)
CMakeLists.txt:21 (include)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning at /home/emre/test_ws/src/talos_integration_tests/cmake/doxygen.cmake:698 (MESSAGE):
Failed to find Doxygen, documentation will not be generated.
Call Stack (most recent call first):
cmake/post-project.cmake:58 (_SETUP_PROJECT_DOCUMENTATION)
CMakeLists.txt:27 (PROJECT)
CMake Warning (dev) at /usr/src/googletest/CMakeLists.txt:3 (project):
Policy CMP0048 is not set: project() command manages VERSION variables.
Run "cmake --help-policy CMP0048" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.
The following variable(s) would be set to empty:
PROJECT_VERSION
PROJECT_VERSION_MAJOR
PROJECT_VERSION_MINOR
PROJECT_VERSION_PATCH
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/src/googletest/googlemock/CMakeLists.txt:40 (project):
Policy CMP0048 is not set: project() command manages VERSION variables.
Run "cmake --help-policy CMP0048" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.
The following variable(s) would be set to empty:
PROJECT_VERSION
PROJECT_VERSION_MAJOR
PROJECT_VERSION_MINOR
PROJECT_VERSION_PATCH
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/src/googletest/googletest/CMakeLists.txt:47 (project):
Policy CMP0048 is not set: project() command manages VERSION variables.
Run "cmake --help-policy CMP0048" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.
The following variable(s) would be set to empty:
PROJECT_VERSION
PROJECT_VERSION_MAJOR
PROJECT_VERSION_MINOR
PROJECT_VERSION_PATCH
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Error at /opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
Could not find a package configuration file provided by "talos_gazebo" with
any of the following names:
talos_gazeboConfig.cmake
talos_gazebo-config.cmake
Add the installation prefix of "talos_gazebo" to CMAKE_PREFIX_PATH or set
"talos_gazebo_DIR" to a directory containing one of the above files. If
"talos_gazebo" provides a separate development package or SDK, be sure it
has been installed.
Call Stack (most recent call first):
CMakeLists.txt:40 (find_package)
cd /home/emre/test_ws/build/talos_integration_tests; catkin build --get-env talos_integration_tests | catkin env -si /usr/bin/cmake /home/emre/test_ws/src/talos_integration_tests --no-warn-unused-cli -DCATKIN_DEVEL_PREFIX=/home/emre/test_ws/devel/.private/talos_integration_tests -DCMAKE_INSTALL_PREFIX=/home/emre/test_ws/install -DPYTHON_STANDARD_LAYOUT:BOOL=ON -DPYTHON_DEB_LAYOUT:BOOL=OFF -DSETUPTOOLS_DEB_LAYOUT:BOOL=OFF; cd -
...............................................................................
Failed << talos_integration_tests:cmake [ Exited with code 1 ]
Failed <<< talos_integration_tests [ 3.8 seconds ]
[build] Summary: 0 of 1 packages succeeded.
[build] Ignored: None.
[build] Warnings: None.
[build] Abandoned: None.
[build] Failed: 1 packages failed.
[build] Runtime: 4.2 seconds total.
May anyone help me if this repository is available for everyone?
Thanks