1234567891011121314151617181920212223 |
- #!/bin/sh
- # Give OCaml version as first argument
- # Inspired by https://github.com/ocaml/ocaml-ci-scripts
- # Installing opam
- opam init -y --comp="$1"
- eval `opam config env`
- # Versions
- opam --version
- opam --git-version
- ocaml -version
- # ocamlfind is mandatory to build
- opam install -y ocamlfind
- # Installing dependancies and testing installation
- opam pin add -y oclaunch-ci .
- # Building OcLaunch and running tests
- ./configure --enable-tests
- make test
|