summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
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