]> git.madduck.net Git - etc/vim.git/blob - .travis.yml

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 double code quotes with backslashes
[etc/vim.git] / .travis.yml
1 language: vim
2
3 os:
4   - linux
5   - osx
6
7 env:
8   - TEST=package
9   - TEST=latest
10
11 before_script: |
12   if [ "$TEST" = "package" ]; then
13     if [ "$TRAVIS_OS_NAME" = "linux" ]; then
14       sudo apt-get -y update
15       sudo apt-get -y install vim
16     fi
17   else
18     cd ..
19     git clone --depth 1 https://github.com/vim/vim
20     cd vim
21     ./configure --with-features=huge
22     make
23     sudo make install
24     export PATH="/usr/local/bin:$PATH"
25     cd "$TRAVIS_BUILD_DIR"
26   fi
27   if [ "$TRAVIS_OS_NAME" = "osx" ]; then
28     curl https://bootstrap.pypa.io/get-pip.py | sudo python
29   fi
30   sudo -H pip install virtualenv
31
32 script:
33   - make test
34   - make doc