Skip to content
This repository was archived by the owner on Nov 27, 2017. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
language: c
compiler:
- clang
matrix:
include:
- compiler: gcc
env: COVERALLS=yes
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install libperl-dev python-dev python3-dev ruby1.9.1-dev liblua5.1-0-dev lua5.1
- sudo pip install cpp-coveralls --use-mirrors
script: sh ./ci_run.sh
after_success:
- if [ $COVERALLS == yes ]; then cd vim && coveralls -b src -x .xs -e src/xxd -e src/if_perl.c -e src/hangulin.c -e src/digraph.c; fi

# vim:set sts=2 sw=2 tw=0 et:
2 changes: 1 addition & 1 deletion ci_run.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# vim:set sts=2 sw=2 tw=0 et:

cd vim && CFLAGS=-coverage LDFLAGS=-coverage \
cd vim && \
./configure \
--with-features=huge \
--enable-perlinterp \
Expand Down