]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Fix travis script to work with make test
authorHiroshi Shirosaki <h.shirosaki@gmail.com>
Wed, 9 Dec 2015 05:57:49 +0000 (14:57 +0900)
committerHiroshi Shirosaki <h.shirosaki@gmail.com>
Wed, 9 Dec 2015 05:57:49 +0000 (14:57 +0900)
Fix #143

.travis.yml

index ce03b62d9e320f03cb9f063fc3ae6708b45cda03..41ace46c26f422a710b736cf08ffa2c723aba067 100644 (file)
@@ -4,11 +4,11 @@ env:
   - TEST=latest
 
 before_script: |
   - TEST=latest
 
 before_script: |
-  cd ..
   if [ "$TEST" = "package" ]; then
     sudo apt-get -y update
     sudo apt-get -y install vim
   else
   if [ "$TEST" = "package" ]; then
     sudo apt-get -y update
     sudo apt-get -y install vim
   else
+    cd ..
     git clone --depth 1 https://github.com/vim/vim
     cd vim
     ./configure --with-features=huge
     git clone --depth 1 https://github.com/vim/vim
     cd vim
     ./configure --with-features=huge
@@ -17,8 +17,6 @@ before_script: |
     export PATH="/usr/local/bin:$PATH"
     cd -
   fi
     export PATH="/usr/local/bin:$PATH"
     cd -
   fi
-  git clone https://github.com/godlygeek/tabular
-  git clone https://github.com/junegunn/vader.vim
 
 script: |
   make test
 
 script: |
   make test