https://github.com/charguer/ocaml
Raw File
Tip revision: a15960e97097c47f16e03e2dac697b7d13792330 authored by charguer on 10 November 2017, 09:10:13 UTC
fixed
Tip revision: a15960e
.travis-ci.sh
case $XARCH in
i386)
  ./configure
  make world.opt
  sudo make install
  (cd testsuite && make all)
  git clone git://github.com/ocaml/camlp4 -b 4.02
  (cd camlp4 && ./configure && make && sudo make install)
  git clone git://github.com/ocaml/opam
  (cd opam && ./configure && make lib-ext && make && sudo make install)
  opam init -y -a git://github.com/ocaml/opam-repository
  opam install -y utop
  ;;
*)
  echo unknown arch
  exit 1
  ;;
esac
back to top