silverstripe-comments/.travis.yml

35 lines
1.0 KiB
YAML
Raw Normal View History

language: php
dist: xenial
services:
- mysql
- postgresql
2013-03-29 09:33:51 +01:00
matrix:
include:
2017-09-12 23:09:47 +02:00
- php: 7.1
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL PHPUNIT_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1 PHPCS_TEST=1
- php: 7.3
env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1
2013-03-29 09:33:51 +01:00
before_script:
- phpenv rehash
2017-09-12 23:09:47 +02:00
- phpenv config-rm xdebug.ini
- composer validate
- composer require silverstripe/installer:^4 ezyang/htmlpurifier:* --no-update
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql:^2; fi
- composer install --prefer-source --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
2017-09-12 23:09:47 +02:00
script:
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/ *.php; fi
2017-09-12 23:09:47 +02:00
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
after_success:
2017-09-12 23:09:47 +02:00
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi