From d342257ae414a98be74b2a58382678eef7249ebc Mon Sep 17 00:00:00 2001 From: Rich Wareham Date: Tue, 25 Feb 2014 00:24:06 +0000 Subject: add installation as a travis test Not only should we pass the test suite but we should also install successfully. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bb82ce1e4c..04c592fc95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,2 +1,2 @@ language: c -script: make cmake && make test +script: make cmake CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$PWD/dist" && make test && make install -- cgit