summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-09-25 20:30:58 +0200
committerBram Moolenaar <Bram@vim.org>2015-09-25 20:30:58 +0200
commitc1d20998d71f3fa0aebeeee42007a337cd7e3d8a (patch)
tree4552b05c6e99da475dcf3ac11f1275bf38bdd3c1
parent10ad1d90da8c464e1bf08bf23d92d4888378a8a1 (diff)
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.yml4
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index b8210ca9e4..0ef9f57216 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 38fdf93bd1..8d782620db 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,