From 6160b596578ead010482b79321e8fc1e6583b22a Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Wed, 1 Mar 2017 03:56:02 -0500 Subject: [PATCH] Add .travis file (#12) Will work against OCaml 4.0{2,3,4} and Linux, OSX --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..3d4d6e97 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: c +sudo: required +install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh +script: bash -ex .travis-opam.sh +env: + global: + - PACKAGE=jbuilder + matrix: + - OCAML_VERSION=4.02 + - OCAML_VERSION=4.03 + - OCAML_VERSION=4.04 +os: + - linux + - osx