]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Exclude v1 branches from Travis
authorJeremy Benoist <jeremy.benoist@gmail.com>
Wed, 24 Feb 2016 12:47:54 +0000 (13:47 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Wed, 24 Feb 2016 12:50:29 +0000 (13:50 +0100)
Instead of allowing only v2.
Branches which didn't target v2 BUT related to v2 weren't tested on Travis

.travis.yml

index 9ae43639743a7b8b971d4b798d62083eb0907557..819d29fdc947db3564094dca32d88410edeb3a43 100644 (file)
@@ -34,9 +34,11 @@ matrix:
     allow_failures:
         - php: hhvm
 
+# exclude v1 branches
 branches:
-    only:
-        - v2
+    except:
+        - master
+        - dev
 
 before_script:
     - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi;