Fix travis

This commit is contained in:
Julius Haertl
2016-10-14 14:30:56 +02:00
parent 29c907ab7f
commit 20222c1f79

View File

@@ -1,53 +1,36 @@
sudo: required sudo: false
dist: trusty
language: php language: php
php: php:
- 5.6 - 5.6
- 7 - 7
env: env:
global: global:
- CORE_BRANCH=stable9 - DB=sqlite
matrix: matrix:
- DB=pgsql - CORE_BRANCH=stable10
- CORE_BRANCH=master
matrix: matrix:
allow_failures:
- env: DB=pgsql CORE_BRANCH=master
include:
- php: 5.6
env: DB=sqlite
- php: 5.6
env: DB=mysql
- php: 5.6
env: DB=pgsql CORE_BRANCH=master
fast_finish: true fast_finish: true
before_install: before_install:
# install firefox and enable a display for running JavaScript tests
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sudo apt-get update
- sudo apt-get -y install python3-setuptools firefox mariadb-server
- sudo easy_install3 requests ocdev
- nvm install 5.9
- npm install -g npm@latest
- make
# install core # install core
- cd ../ - cd ../
- ocdev setup core --dir owncloud --branch $CORE_BRANCH --no-history - git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH
- mv deck owncloud/apps/ - mv deck-dev server/apps/deck
before_script: before_script:
- createuser -U travis -s oc_autotest # fill owncloud with default configs and enable deck
- mysql -u root -e 'create database oc_autotest;' - cd server
- mysql -u root -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY '';"
- mysql -u root -e "grant all on oc_autotest.* to 'oc_autotest'@'localhost';"
- cd owncloud
- mkdir data - mkdir data
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass='' - ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
- ./occ app:enable deck - ./occ app:enable deck
- ocdev server & - ./occ app:check-code deck
- php -S localhost:8080 &
- cd apps/deck - cd apps/deck
script: script:
- make test - make test
after_failure:
- cat ../../data/nextcloud.log