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

github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-09-19 09:36:19 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-09-19 09:36:19 +0300
commit1b9c8b2cd942460bcd4b8c9cdd32b248ba8d0f5d (patch)
tree2899ea666e48173b2123a1151c3cf3e3a0ad5f88 /.travis.yml
parentbb88f5557e1113e07f1d9c607f3d30b19d1ee77c (diff)
parented638a4e18c2e8fc5dcd2a67d3aac3ec87c5bc9e (diff)
MtMerge branch 'master' of github.com:/ChristophWurst/twofactor_sms into dependachristoph/update-deps
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 7 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 1e5fbf0..5e35eb5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,10 +4,11 @@ language: php
php:
- 7.0
- 7.1
+ - 7.2
env:
global:
- - CORE_BRANCH=master
+ - SERVER_BRANCH=master
- PHP_COVERAGE=FALSE
matrix:
- DB=sqlite
@@ -31,7 +32,7 @@ before_install:
- composer self-update
- composer install
- cd ..
- - git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH core
+ - git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $SERVER_BRANCH core
- mv twofactor_gateway core/apps/
before_script:
@@ -60,9 +61,10 @@ script:
matrix:
include:
- - php: 7.0
- env: "DB=sqlite CORE_BRANCH=v14.0.0beta2" # replace with `stable14` once available
+ - php: 7.2
+ env: "DB=sqlite SERVER_BRANCH=v14.0.0"
+ - php: 7.2
+ env: "DB=sqlite SERVER_BRANCH=stable14"
- php: 7.2
env: "DB=sqlite PHP_COVERAGE=TRUE"
fast_finish: true
-