summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 21:34:23 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 21:34:23 +0200
commitcb8f28b4d0b005d3e915b6d027683084739df3bb (patch)
tree1c3da0d7d077fec2b369df223e1e404fa5494a91 /.travis.yml
parent7a3a22bd2757e129c8964d9ddcde15ec53b736bb (diff)
adjust travis config
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 4 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index d2a7ac3aa..1c301870d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,16 +32,16 @@ before_install:
- make
# install core
- cd ../
- - git clone https://github.com/owncloud/core.git --recursive --depth 1 -b $CORE_BRANCH owncloud
- - mv news owncloud/apps/
+ - git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH nextcloud
+ - mv news nextcloud/apps/
before_script:
- if [[ "$DB" == 'pgsql' ]]; then createuser -U travis -s oc_autotest; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e 'create database oc_autotest;'; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY '';"; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "grant all on oc_autotest.* to 'oc_autotest'@'localhost';"; fi
- # fill owncloud with default configs and enable news
- - cd owncloud
+ # fill nextcloud with default configs and enable news
+ - cd nextcloud
- mkdir data
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
- ./occ app:enable news
@@ -53,10 +53,6 @@ before_script:
script:
- make test
-after_success:
- - wget https://scrutinizer-ci.com/ocular.phar
- - php ocular.phar code-coverage:upload --format=php-clover build/php-unit.clover
-
after_failure:
- cat ../../data/owncloud.log