I have project that uses Mono and .NETCore to build code as CI gate.
See https://travis-ci.org/fsprojects/fantomas.
However it takes forever to build my code as every single time it needs to download both Mono and .NETCore before running my code.
I’m interested in using Docker (this image works fine https://github.com/ninjarobot/docker-fsharp-mono-netcore) but I’m not sure how to proceed.
I basically want to pull the image and do a docker run
. However if something goes wrong in the container will I have the same level of detail as something going wrong in my current setup?
And how would I set this up in my .travis-ci.yml
?
I find the docs a bit confusing on that end.
Many thanks.