diff options
author | Rich Wareham <rjw57@cam.ac.uk> | 2014-02-25 00:24:06 +0000 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-25 13:20:14 -0300 |
commit | d342257ae414a98be74b2a58382678eef7249ebc (patch) | |
tree | e60c00fdf4d45802be9498116bc8e43f6e3d0959 | |
parent | 0a15feee9d0ceb051a66ec31eee60f5477359ee2 (diff) | |
download | rneovim-d342257ae414a98be74b2a58382678eef7249ebc.tar.gz rneovim-d342257ae414a98be74b2a58382678eef7249ebc.tar.bz2 rneovim-d342257ae414a98be74b2a58382678eef7249ebc.zip |
add installation as a travis test
Not only should we pass the test suite but we should also install
successfully.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |