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

github.com/nextcloud/server.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-10-27 18:09:13 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-10-28 01:00:04 +0300
commitb753e7631bd318a1f428d8925dec64693879fd0d (patch)
treef02f3ace2f9958f7068cd2a37ed52a8697e0d1f0 /.travis.yml
parent4d87276f4be55419189fb23d3c3c13f00c19f006 (diff)
Enable DAV app testing on travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml39
1 files changed, 39 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000000..98cf0354730
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,39 @@
+sudo: false
+language: php
+php:
+ - 5.4
+
+env:
+ global:
+ - APP=dav
+ - TC=litmus-v2
+ matrix:
+ - DB=sqlite
+
+branches:
+ only:
+ - master
+# - /^stable\d+(\.\d+)?$/
+
+addons:
+ apt:
+ packages:
+ - realpath
+
+before_install:
+ - bash tests/travis/before_install.sh $DB
+
+install:
+ - bash tests/travis/install.sh $DB
+
+script:
+ - bash apps/$APP/tests/travis/$TC.sh
+
+matrix:
+ include:
+ - php: 5.4
+ env: DB=pgsql;TC=litmus-v1;APP=dav
+# - php: 5.4
+# env: DB=mysql;TC=caldavtester;APP=dav
+
+ fast_finish: true