I am trying a Windows build in Travis. The cmake
configuration step works perfectly well (even building projects via ExternalProject_Add
). However, it fails right after that when I call cmake --build .
(or any variation of it like cmake --build path/to/source
or cmake --build . --config Debug
etc.) without leaving an error message. I tried to add intermediary steps such as ls
and cmake --help
to get more output, but I still cannot understand what’s happening.
In brief, cmake --build .
stops the build, resulting in a Travis failure, without logging anything.
The build is here: https://travis-ci.org/Dronecode/DronecodeSDK/builds/528428407?utm_source=github_status&utm_medium=notification
This is the log (you won’t see an error message at the end, but the job failed): https://api.travis-ci.org/v3/job/528428416/log.txt
How can I get more insights of what’s happening?