浏览代码

Merge branch 'master' into enhancement/build-release

Daniel Rudolf 9 年之前
父节点
当前提交
1f16be05e3
共有 1 个文件被更改,包括 6 次插入2 次删除
  1. 6 2
      .travis.yml

+ 6 - 2
.travis.yml

@@ -8,8 +8,13 @@ php:
   - hhvm
   - nightly
 
+matrix:
+  allow_failures:
+    - php: nightly
+  fast-finish: true
+
 script:
-  - find . -type f -name '*.php' -print0 | xargs -0 -I file php -l file > /dev/null
+  - find . -not \( -path './vendor' -prune \) -type f -name '*.php' -print0 | xargs -0 -I file php -l file > /dev/null
 
 before_deploy:
   - composer install
@@ -25,7 +30,6 @@ deploy:
   file: pico-release-$TRAVIS_TAG.tar.gz
   skip_cleanup: true
   on:
-    repo: picocms/Pico
     tags: true
     php: 5.3