Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-06-08 21:55:23 +0300
committerBjoern Schiessle <schiessle@owncloud.com>2015-06-09 19:21:30 +0300
commitabc7e21965c859a8287a0c31d31015343811185a (patch)
tree10446c21a5c5a3a9d30e1c7b239d5a30349f3447 /.travis.yml
parent8440ecf4699ee6da2454cfd54f4eb70ffc88ff24 (diff)
Fixing travis & setting 8.1 minimum requirement
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml17
1 files changed, 8 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index b476cd9..01a4a34 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,15 @@
-# see http://about.travis-ci.org/docs/user/languages/php/ for more hints
language: php
-
-# list any PHP version you want to test against
php:
- # using major version aliases
-
- # aliased to a recent 5.3.x version
- - 5.3
- # aliased to a recent 5.4.x version
- 5.4
- # aliased to a recent 5.5.x version
- 5.5
+ - 5.6
+ - hhvm
+ - 7
script: ant test
+matrix:
+ allow_failures:
+ - php: hhvm
+ - php: 7
+ fast_finish: true