2015-09-10 22:40:44 +02:00
|
|
|
language: php
|
|
|
|
|
2017-08-09 01:48:10 +02:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- COMPOSER_ROOT_VERSION=4.0.x-dev
|
|
|
|
|
2013-03-29 09:54:12 +01:00
|
|
|
matrix:
|
2015-09-10 22:40:44 +02:00
|
|
|
include:
|
2015-08-13 02:44:39 +02:00
|
|
|
- php: 5.6
|
2017-08-09 01:48:10 +02:00
|
|
|
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
|
|
|
|
- php: 7.0
|
|
|
|
env: DB=MYSQL PHPUNIT_TEST=1
|
2017-06-15 01:45:07 +02:00
|
|
|
- php: 7.1
|
2017-08-09 01:48:10 +02:00
|
|
|
env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1
|
2013-03-29 09:54:12 +01:00
|
|
|
|
|
|
|
before_script:
|
2017-08-09 01:48:10 +02:00
|
|
|
# Init PHP
|
|
|
|
- phpenv rehash
|
2017-08-15 23:31:47 +02:00
|
|
|
- phpenv config-rm xdebug.ini || true
|
2017-08-09 01:48:10 +02:00
|
|
|
|
|
|
|
# Install composer dependencies
|
|
|
|
- composer install --prefer-dist
|
2017-08-16 01:57:50 +02:00
|
|
|
- composer require --prefer-dist --no-update silverstripe/framework:4.0.x-dev silverstripe/cms:4.0.x-dev silverstripe/admin:1.0.x-dev silverstripe/versioned:1.0.x-dev silverstripe-themes/simple:~3.2
|
2017-08-09 01:48:10 +02:00
|
|
|
- composer update
|
2013-03-29 09:54:12 +01:00
|
|
|
|
2015-09-10 22:40:44 +02:00
|
|
|
script:
|
2017-08-09 01:48:10 +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
|
|
|
|
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs code/ tests/; fi
|
2017-01-24 21:35:50 +01:00
|
|
|
|
2017-02-03 16:05:03 +01:00
|
|
|
after_success:
|
2017-08-09 01:48:10 +02:00
|
|
|
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
|