Mercurial > vim
view .travis.yml @ 7135:9d4986f52df8 v7.4.879
commit https://github.com/vim/vim/commit/1d6328ca00fc6cfe37b1f5e038ec23f443258886
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Sep 25 17:37:16 2015 +0200
patch 7.4.879
Problem: Can't see line numbers in nested function calls.
Solution: Add line number to the file name. (Alberto Fanjul)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 25 Sep 2015 17:45:04 +0200 |
parents | a497a9868255 |
children | 7669c1269190 |
line wrap: on
line source
language: c compiler: - clang - gcc env: - COVERAGE=yes CFLAGS=--coverage LDFLAGS=--coverage FEATURES=huge "CONFOPT='--enable-perlinterp --enable-pythoninterp --enable-python3interp --enable-rubyinterp --enable-luainterp'" - COVERAGE=no FEATURES=small CONFOPT= - COVERAGE=no FEATURES=tiny CONFOPT= sudo: false addons: apt: packages: - lcov - libperl-dev - python-dev - python3-dev - liblua5.1-0-dev - lua5.1 before_install: - pip install --user cpp-coveralls script: - NPROC=$(getconf _NPROCESSORS_ONLN) - ./configure --with-features=$FEATURES $CONFOPT --enable-fail-if-missing && make -j$NPROC - ./src/vim --version - make test after_success: - 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 # vim:set sts=2 sw=2 tw=0 et: