Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
richdocuments/.travis.yml

69 righe
1.8 KiB
YAML

language: php
php:
- 7
env:
global:
- CORE_BRANCH=master
- APP_NAME=richdocuments
matrix:
- DB=sqlite
branches:
only:
- master
- /^stable\d+(\.\d+)?$/
sudo: true
before_install:
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- . ./before_install.sh $APP_NAME $CORE_BRANCH $DB
# Add some output debugging information
- cd ../server
- ./occ check
- ./occ status
- ./occ app:list
script:
- cd apps/$APP_NAME/
# Test the app
- sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' = '1' ]; then find . -name \*.php -exec php -l \"{}\" \;; fi"
- cd ../../
- sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' = '1' ]; then ./occ app:check-code $APP_NAME -c private -c strong-comparison; fi"
- sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' = '2' ]; then ./occ app:check-code $APP_NAME -c deprecation; fi"
- cd apps/$APP_NAME/
# Run phpunit tests
- cd tests/
- sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' != '1' -a '$CODECHECK' != '2' ]; then phpunit --configuration phpunit.xml; fi"
# Create coverage report
- sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' != '1' -a '$CODECHECK' != '2' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi"
- sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' != '1' -a '$CODECHECK' != '2' ]; then php ocular.phar code-coverage:upload --format=php-clover clover.xml; fi"
- cd ../
matrix:
matrix:
include:
- php: 7
env: "DB=sqlite CORE_BRANCH=stable12"
- php: 7
env: "DB=sqlite CORE_BRANCH=stable13"
- php: 7
env: DB=mysql
- php: 7
env: DB=pgsql
- php: 7
env: DB=mysql;CODECHECK=1
- php: 7
env: DB=mysql;CODECHECK=2
- php: 7
env: DB=mysql;JSTESTS=1
allow_failures:
- env: DB=mysql;CODECHECK=1
fast_finish: true