# HG changeset patch # User Bram Moolenaar # Date 1547902806 -3600 # Node ID d255018b40fff713d85ed48885724310fa307a55 # Parent fdbc06886fce54bd1ec3ed0ee373054252181f53 patch 8.1.0776: Travis does not build a version without GUI on Linux commit https://github.com/vim/vim/commit/b2e54b009279754e420c992a5e4ec05b0728d915 Author: Bram Moolenaar Date: Sat Jan 19 13:46:50 2019 +0100 patch 8.1.0776: Travis does not build a version without GUI on Linux Problem: Travis does not build a version without GUI on Linux. Solution: Add an environment for tiny features without GUI. diff --git a/.travis.yml b/.travis.yml --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ compiler: - gcc env: + - BUILD=yes TEST=test COVERAGE=no FEATURES=tiny "CONFOPT='--disable-gui'" SHADOWOPT= SRCDIR=./src CHECK_AUTOCONF=no - BUILD=yes TEST=test COVERAGE=no FEATURES=tiny CONFOPT= SHADOWOPT= SRCDIR=./src CHECK_AUTOCONF=no # ASAN build - BUILD=yes TEST=test SANITIZER_CFLAGS="-g -O1 -DABORT_ON_INTERNAL_ERROR -DEXITFREE -fsanitize=address -fno-omit-frame-pointer" @@ -28,10 +29,13 @@ sudo: false # instead of a 2*2*7 matrix (2*os + 2*compiler + 7*env), # exclude some builds on mac os x and linux +# on mac os x "tiny" is always without GUI # linux: 2*compiler + 5*env + mac: 2*compiler + 2*env matrix: exclude: - os: osx + env: BUILD=yes TEST=test COVERAGE=no FEATURES=tiny CONFOPT= SHADOWOPT= SRCDIR=./src CHECK_AUTOCONF=no + - os: osx env: BUILD=yes TEST=test COVERAGE=no FEATURES=normal CONFOPT= SHADOWOPT="-C src/shadow" SRCDIR=./src/shadow CHECK_AUTOCONF=no - os: osx env: BUILD=no TEST=unittests COVERAGE=yes CFLAGS=--coverage LDFLAGS=--coverage FEATURES=huge SHADOWOPT= SRCDIR=./src CHECK_AUTOCONF=yes diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -792,6 +792,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 776, +/**/ 775, /**/ 774,