blob: 0ef9f5721645d198224e0e05941f900fa597d25e [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
Bram Moolenaarc1d20992015-09-25 20:30:58 +020015branches:
16 except:
17 - /^v[0-9]/
18
Bram Moolenaar0600f352015-09-15 19:18:18 +020019addons:
20 apt:
21 packages:
22 - lcov
23 - libperl-dev
24 - python-dev
25 - python3-dev
26 - liblua5.1-0-dev
27 - lua5.1
28
29before_install:
30 - pip install --user cpp-coveralls
31
32script:
33 - NPROC=$(getconf _NPROCESSORS_ONLN)
34 - ./configure --with-features=$FEATURES $CONFOPT --enable-fail-if-missing && make -j$NPROC
35 - ./src/vim --version
36 - make test
37
38after_success:
39 - 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
40
41# vim:set sts=2 sw=2 tw=0 et: