From c690756b4d5abf81ca06a62ee83dfa870f8b929c Mon Sep 17 00:00:00 2001 From: Anil Madhavapeddy Date: Fri, 4 Jan 2019 17:22:53 +0000 Subject: [PATCH] travis: be explicit about not using the system compiler --- .travis-ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis-ci.sh b/.travis-ci.sh index 6f67364f..87a36733 100644 --- a/.travis-ci.sh +++ b/.travis-ci.sh @@ -10,7 +10,7 @@ install_on_linux () { sudo apt-get update -qq if test $use_opam; then sudo apt-get install -qq opam - opam init --compiler=$OCAML_VERSION + opam init --compiler=ocaml-base-compiler.$OCAML_VERSION else sudo apt-get install -qq ocaml ocaml-native-compilers opam opam init @@ -25,7 +25,7 @@ install_on_osx () { brew update brew reinstall ocaml brew install libffi opam - opam init --compiler=$OCAML_VERSION + opam init --compiler=ocaml-base-compiler.$OCAML_VERSION eval `opam env` }