diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-27 16:09:13 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-27 23:00:04 +0100 |
commit | b753e7631bd318a1f428d8925dec64693879fd0d (patch) | |
tree | f02f3ace2f9958f7068cd2a37ed52a8697e0d1f0 /.travis.yml | |
parent | 4d87276f4be55419189fb23d3c3c13f00c19f006 (diff) | |
download | nextcloud-server-b753e7631bd318a1f428d8925dec64693879fd0d.tar.gz nextcloud-server-b753e7631bd318a1f428d8925dec64693879fd0d.zip |
Enable DAV app testing on travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 39 |
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 |