maps/.travis.yml

68 строки
2.3 KiB
YAML

sudo: required
dist: cosmic
language: php
php:
- 7.2
env:
global:
- CORE_BRANCH=stable16
matrix:
- DB=pgsql
matrix:
allow_failures:
- env: DB=pgsql CORE_BRANCH=master
include:
- php: 7.2
env: DB=sqlite
- php: 7.2
env: DB=mysql
- php: 7.2
env: DB=pgsql
services: postgresql
- php: 7.2
env: DB=pgsql CORE_BRANCH=master
services: postgresql
fast_finish: true
before_install:
## enable a display for running JavaScript tests
#- export DISPLAY=:99.0
#- sh -e /etc/init.d/xvfb start
- if [[ "$DB" == 'mysql' ]]; then sudo apt-get -y install mariadb-server; fi
#- if [[ "$DB" == 'pgsql' ]]; then sudo apt-get -y install postgresql; fi
- if [[ "$DB" == 'sqlite' ]]; then sudo apt-get -y install sqlite3; fi
- nvm install 6
- npm install -g npm@latest
- make
#- make appstore
# install core
- cd ../
- git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH nextcloud
# - wget -q https://download.nextcloud.com/server/releases/nextcloud-16.0.1.zip ; unzip -q nextcloud-16.0.1.zip ; rm nextcloud-16.0.1.zip
- mv maps nextcloud/apps/
before_script:
- if [[ "$DB" == 'pgsql' ]]; then sudo createuser -U postgres -s oc_autotest; fi
- if [[ "$DB" == 'mysql' ]]; then sudo mysql -u root -e 'create database oc_autotest;'; fi
- if [[ "$DB" == 'mysql' ]]; then sudo mysql -u root -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY '';"; fi
- if [[ "$DB" == 'mysql' ]]; then sudo mysql -u root -e "grant all on oc_autotest.* to 'oc_autotest'@'localhost';"; fi
- cd nextcloud
# temporary fix, feel free to fix that
- sed -i $'s|if (substr($fullPath, 0, strlen($root) + 1) === $root . \'/\')|if (is_string($root) and substr($fullPath, 0, strlen($root) + 1) === $root . \'/\')|g' lib/autoloader.php
- mkdir data
- php -f ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
- php -f ./occ app:enable maps
- chmod 777 data
#- php -S localhost:8080 &
- cd apps/maps
script:
- make test
after_failure:
- cat ../../data/nextcloud.log
#addons:
# firefox: "latest"