# HG changeset patch # User Christian Brabandt # Date 1485552605 -3600 # Node ID be61c545b5d114395a62e0836a7f01e7d38d07de # Parent ce294559a82698aad82aabf1090430b157088a03 patch 8.0.0249: CI failure when a submit is close to previous one commit https://github.com/vim/vim/commit/4bc2f2e9fd73da4ba79cef83e4720e918981c483 Author: Bram Moolenaar Date: Fri Jan 27 22:20:13 2017 +0100 patch 8.0.0249: CI failure when a submit is close to previous one Problem: When two submits happen quick after each other, the tests for the first one may error out. Solution: Use a git depth of 10 instead of 1. (Christian Brabandt) diff --git a/.travis.yml b/.travis.yml --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,7 @@ env: sudo: false git: - depth: 1 + depth: 10 # instead of a 2*2*8 matrix (2*os + 2*compiler + 8*env), # exclude some builds on mac os x and linux diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 249, +/**/ 248, /**/ 247,