gitlab-ci.sh 271 B

1234567891011121314151617
  1. #!/bin/sh
  2. # Inspired by https://github.com/ocaml/ocaml-ci-scripts
  3. # Installing opam
  4. opam init --comp="4.02.2"
  5. eval `opam config env`
  6. opam --version
  7. opam --git-version
  8. ocaml -version
  9. # Building OcLaunch and running tests
  10. ./configure --enable-tests
  11. make
  12. ./test.native