I have a build system which runs on a docker container. That docker container works fine on other windows hosts.
But running this docker container to do my builds - mostly works - but some of the executables just do nothing. They emit no error message, and even emit no error status code.
for example, look at the very end of this build:
https://travis-ci.com/github/SophistSolutions/Stroika/jobs/300679115
I run the line:
docker exec --workdir c:/Stroika buildContainer sh -c “cd ThirdPartyComponents/WIX/CURRENT/ && ./candle -v”
This produces no output - no error status.
‘candle’ is a standard build tool. Its extracted from a zipfile (earlier). Earlier steps show the file permissions all look good, and it just fails to run.
I also have executables I’ve BUILT in earlier steps of the build (another build):
https://travis-ci.com/github/SophistSolutions/Stroika/jobs/300679112
looking at the end of the console log here
Builds/Debug/Tests/Test01
just trying to run the executable I built (and you can see ls listed). But it returns exit status 127.
Again, I’ve done basically the same thing using the same container on other windows hosts. I’m not sure how to debug this without being able to ssh into this VM/container?