blob: b8210ca9e4e224c4e0e5b65851c1347f3122e7d6 [file] [log] [blame]
Bram Moolenaar0600f352015-09-15 19:18:18 +02001language: c
2
3compiler:
4 - clang
5 - gcc
6
7env:
8 - COVERAGE=yes CFLAGS=--coverage LDFLAGS=--coverage FEATURES=huge
9 "CONFOPT='--enable-perlinterp --enable-pythoninterp --enable-python3interp --enable-rubyinterp --enable-luainterp'"
10 - COVERAGE=no FEATURES=small CONFOPT=
11 - COVERAGE=no FEATURES=tiny CONFOPT=
12
13sudo: false
14
15addons:
16 apt:
17 packages:
18 - lcov
19 - libperl-dev
20 - python-dev
21 - python3-dev
22 - liblua5.1-0-dev
23 - lua5.1
24
25before_install:
26 - pip install --user cpp-coveralls
27
28script:
29 - NPROC=$(getconf _NPROCESSORS_ONLN)
30 - ./configure --with-features=$FEATURES $CONFOPT --enable-fail-if-missing && make -j$NPROC
31 - ./src/vim --version
32 - make test
33
34after_success:
35 - if [ x"$COVERAGE" = "xyes" ]; then ~/.local/bin/coveralls -b src -x .xs -e src/xxd -e src/if_perl.c --encodings utf-8 latin-1 EUC-KR; fi
36
37# vim:set sts=2 sw=2 tw=0 et: