diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-27 22:20:13 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-27 22:20:13 +0100 |
commit | 4bc2f2e9fd73da4ba79cef83e4720e918981c483 (patch) | |
tree | 5a7263cb734a1e35460691462565760ece61b99d /.travis.yml | |
parent | 45600ce8f2bead069882032f992623cd5a799ca0 (diff) | |
download | vim-git-4bc2f2e9fd73da4ba79cef83e4720e918981c483.tar.gz |
patch 8.0.0249: CI failure when a submit is close to previous onev8.0.0249
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)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 44e320c27..0ab133338 100644 --- 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 |