Thanks for all the hints. Some experiences: I have used the .travis.yaml file from the repo ocaml/ocaml-ci-scripts, reduced the build matrix to a minimum (only 4.07) and it worked out of the box. However to took approx 8 min for linux and 12 min for osx. Therefore I have changed in the travis file ‘.travis-opam.sh’ to ‘.travis-docker.sh’ and added ’services: -docker’, because docker has been recommended by many. Now the build failed after some seconds. Maybe there is more to do than this trivial change to switch to docker. Is there some documentation on how to use docker? Is it worth the effort i.e. will it run faster or has it more features? Regards Helmut > On Apr 9, 2019, at 16:36, Anil Madhavapeddy wrote: > > On 9 Apr 2019, at 19:14, Helmut Brandl > wrote: >> >> Hello list, >> >> I would like to run some continuous integration like travis ci on my opam package. Unfortunately ocaml is not supported directly by travis. But I have found the GitHub repository ocaml/ocaml-ci-scripts and some instructions on how to use it. > > Dear Helmut, > >> My questions: >> >> - Is this a stable form on how to use travis with ocaml? >> >> - Are there experiences and are they good? > > Last I checked, there were over 400 repositories on GitHub using ocaml-ci-scripts. It's pretty stable. > >> - Why has this solution been chosen instead of integrating ocaml support directly into travis? > > Why do you need direct integration with Travis? The use of the Docker support has made the necessity for that essentially obsolete. > > See, for example: > https://github.com/mirage/ocaml-cohttp/blob/master/.travis.yml > > in cohttp, which uses Travis and Docker to test the libraries on a variety of Linux distributions. > >> - Isn’t the solution an overkill, because it requires a complete opam and ocaml installation on the travis machines in order to test an opam package? Isn’t there the risk that travis might block this form of usage in the future? >> >> - Is there a better method to use CI with ocaml? > > This solution is pretty good for most people. I'd encourage you to give it a try, and to contribute back any improvements or feature requests you might have after trying it out for a while. > > regards, > Anil