diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-09-25 20:30:58 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-09-25 20:30:58 +0200 |
commit | c1d20998d71f3fa0aebeeee42007a337cd7e3d8a (patch) | |
tree | 4552b05c6e99da475dcf3ac11f1275bf38bdd3c1 | |
parent | 10ad1d90da8c464e1bf08bf23d92d4888378a8a1 (diff) | |
download | vim-git-c1d20998d71f3fa0aebeeee42007a337cd7e3d8a.tar.gz |
patch 7.4.884v7.4.884
Problem: Travis also builds on a tag push.
Solution: Filter out tag pushes. (Kenichi Ito)
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index b8210ca9e..0ef9f5721 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,10 @@ env: sudo: false +branches: + except: + - /^v[0-9]/ + addons: apt: packages: diff --git a/src/version.c b/src/version.c index 38fdf93bd..8d782620d 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 884, +/**/ 883, /**/ 882, |