From 42bec1766fa3a8e0c7270735c52cef3ab1e9fbed Mon Sep 17 00:00:00 2001 From: itchyny Date: Thu, 14 Apr 2016 00:22:23 +0900 Subject: [PATCH] fix tests on Travis - use 7.2.051 (because vim-themis depends on the patch; the third argument of globpath()) - take care of PATH correctly (previously the tests were not tested on the intended versions) --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 69c8ea4..df3f153 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,9 @@ install: - git clone https://github.com/vim/vim /tmp/vim - (cd /tmp/vim && ./configure --prefix=/tmp/vim-latest && make && make install) - (cd /tmp/vim && git checkout . && git checkout v7.3 && ./configure --prefix=/tmp/vim-7.3 && make && make install) - - (cd /tmp/vim && git checkout . && git checkout v7.2.050 && ./configure --prefix=/tmp/vim-7.2.050 && make && make install) + - (cd /tmp/vim && git checkout . && git checkout v7.2.051 && ./configure --prefix=/tmp/vim-7.2.051 && make && make install) script: - - PATH=/tmp/vim-latest/bin/:$PATH vim --version && /tmp/themis/bin/themis --reporter spec - - PATH=/tmp/vim-7.3/bin/:$PATH vim --version && /tmp/themis/bin/themis --reporter spec - - PATH=/tmp/vim-7.2.050/bin/:$PATH vim --version && /tmp/themis/bin/themis --reporter spec + - PATH=/tmp/vim-latest/bin/:$PATH /tmp/themis/bin/themis --reporter spec + - PATH=/tmp/vim-7.3/bin/:$PATH /tmp/themis/bin/themis --reporter spec + - PATH=/tmp/vim-7.2.051/bin/:$PATH /tmp/themis/bin/themis --reporter spec