Hello,
since my build keep failing I tried to run it in debug mode.
If I run it using the travis_run_* commands, it fails also in debug mode with the same error. On the other hand, if I copy, paste and run all the commands one by one, everything goes well. Why?
The build fails when my program try to read a file which is in a volume mounted in a docker container, and it does not find it (while actually it is there, and I have no problems if I run the command manually).
I noticed that your configuration contains a lot of backslashes.
I don’t know what commands you are copying and pasting, but the docker-compose command in question in your build contain these backslashes, which may not be a part of your pasting. https://travis-ci.com/ldsec/medco-deployment/jobs/283826242#L4823
In other words, you might be pasting
I am not sure to understand what is the problem with backslashes, I use them all the time to split long bashes command in multiple lines. Why it does not work this way in Travis? Anyway, now that I removed them, everything works. Thanks!