1234567891011121314151617181920 |
- #!/bin/sh
- # Inspired by https://github.com/ocaml/ocaml-ci-scripts
- # Installing opam
- opam init --comp="4.02.2"
- eval `opam config env`
- opam --version
- opam --git-version
- ocaml -version
- # ocamlfind is mandatory to build
- opam install -y ocamlfind
- # Building OcLaunch and running tests
- ./configure --enable-tests
- make
- ./test.native
|