How to reproduce clang-tidy error on build farm
I'm trying to fix the following build farm issue during visp packaging for ROS2
The issue sounds related to clang-tidy
:
16:51:11 [Clang-Tidy] -> found 24 issues (skipped 24 duplicates)
16:51:11 [Clang-Tidy] Parsing console log (workspace: '/home/jenkins-agent/workspace/Rdev__visp__ubuntu_focal_amd64')
16:51:12 [Clang-Tidy] [-ERROR-] Can't create fingerprints for some files:
16:51:12 [Clang-Tidy] [-ERROR-] - '/tmp/ws/src/visp/3rdparty/stb_image/stb_image_write.h', IO exception has been thrown: java.nio.file.NoSuchFileException: /tmp/ws/src/visp/3rdparty/stb_image/stb_image_write.h
16:51:12 [Clang-Tidy] [-ERROR-] - '/tmp/ws/src/visp/3rdparty/stb_image/stb_image_write.h', IO exception has been thrown: java.nio.file.NoSuchFileException: /tmp/ws/src/visp/3rdparty/stb_image/stb_image_write.h
I don't understand what's going wrong. The stb_image_write.h
is part of the project and should be in /tmp/ws/src/visp/3rdparty/stb_image/stb_image_write.h
How can I reproduce this error ?
Any hint ?