diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-03-16 12:09:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-03-16 12:09:30 +0100 |
commit | b2e1f8a28fab71c7ef38d39226967be8c3559590 (patch) | |
tree | d7f5df0688f5fe7c692b8a9bf40f35e99ceae0cf /.travis.yml | |
parent | ddbfe238a50dc846f2f722e9d870fc0dff5a2764 (diff) | |
download | vim-git-b2e1f8a28fab71c7ef38d39226967be8c3559590.tar.gz |
patch 8.2.0391: CI test coverage droppedv8.2.0391
Problem: CI test coverage dropped.
Solution: Set $DISPLAY also for non-GUI builds. (James McCoy, closes #5788)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index a4fc6dda2..28aea1980 100644 --- a/.travis.yml +++ b/.travis.yml @@ -72,14 +72,16 @@ _anchors: ln -sf "$(which llvm-cov)" /home/travis/bin/gcov fi before_script: - # Start virtual framebuffer to be able to test the GUI. Does not work on OS X. - | - if [[ "${TEST}" =~ gui ]]; then + # Start virtual framebuffer to be able to test the GUI. For dists newer + # than trusty, the "services: xvfb" setting should be used instead + if [[ ${TRAVIS_DIST} = trusty ]]; then export DISPLAY=:99.0 sh -e /etc/init.d/xvfb start && sleep 3 fi - | - [ "${TRAVIS_CPU_ARCH}" = s390x ] || sudo modprobe snd-dummy + # Sound testing works without this in newer dists + [ ${TRAVIS_DIST} != trusty ] || sudo modprobe snd-dummy - sudo usermod -a -G audio $USER - do_test() { sg audio "sg $(id -gn) '$*'"; } @@ -213,6 +215,7 @@ jobs: compiler: gcc env: - *linux-huge + - COVERAGE=no addons: apt: packages: |