Hi, in the Debian package, we usually try to run CI tests regularly on each dependency change. This gives us the opportunity to early find problems with the package or one of its dependencies.
However, I have some difficulties to do that; this may be connected with my limited knowledge of cmake. The test is started with the binaries installed in the system and the sources unpacked. The working dir is the root of the sources. What I basically do now is to run the following script: --------------------8<--------------------- #!/bin/sh set -e SRC=$(pwd) test_dir=$(mktemp -d) cd $test_dir cmake $SRC/examples make test_diff_psc make test_noninteractive --------------------8<--------------------- However, the "cmake" step fails with --------------------8<--------------------- [...] -- CMAKE_SYSTEM_NAME = Linux -- CMAKE_PLATFORM_INFO_DIR = /tmp/tmp.TwEFoteIXX/CMakeFiles/3.12.3 CMake Error at CMakeLists.txt:469 (include): include could not find load file: plplot_configure --------------------8<--------------------- How could I fix this? Best regards Ole _______________________________________________ Plplot-devel mailing list Plplot-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/plplot-devel