From 7dd04204edcf832d321590fdcb9985d74312295b Mon Sep 17 00:00:00 2001 From: Guillaume Bury Date: Thu, 17 Nov 2016 00:19:40 +0100 Subject: [PATCH] [travis] Only build the bin for tests --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cf295755..6256da54 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,7 @@ before_install: - opam install ocamlfind ocamlbuild - if ${RUN_TEST}; then opam pin add dolmen https://github.com/Gbury/dolmen.git; fi install: - - make bin lib + - make lib + - if ${RUN_TEST}; then make bin; fi script: - if ${RUN_TEST}; then make test; fi