2017-07-19 23:30:27 +02:00
|
|
|
# See https://github.com/silverstripe/silverstripe-travis-support for setup details
|
2013-10-10 00:24:17 +02:00
|
|
|
|
2015-07-20 16:59:29 +02:00
|
|
|
sudo: false
|
|
|
|
|
2017-07-19 23:30:27 +02:00
|
|
|
language: php
|
2016-01-20 20:37:43 +01:00
|
|
|
|
2013-10-10 00:38:08 +02:00
|
|
|
env:
|
2014-12-11 11:42:36 +01:00
|
|
|
global:
|
2017-07-19 23:30:27 +02:00
|
|
|
- COMPOSER_ROOT_VERSION="4.0.x-dev"
|
2016-01-20 20:37:43 +01:00
|
|
|
|
2013-10-10 00:38:08 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
2016-01-21 17:46:10 +01:00
|
|
|
- php: 5.6
|
2017-07-19 23:30:27 +02:00
|
|
|
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
|
2016-12-20 04:57:05 +01:00
|
|
|
- php: 7.0
|
2017-07-19 23:30:27 +02:00
|
|
|
env: DB=PGSQL PHPUNIT_TEST=1
|
|
|
|
- php: 7.1
|
|
|
|
env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1
|
2016-12-20 04:57:05 +01:00
|
|
|
|
2013-10-10 00:38:08 +02:00
|
|
|
before_script:
|
2017-07-19 23:30:27 +02:00
|
|
|
# Init PHP
|
2013-10-10 00:38:08 +02:00
|
|
|
- phpenv rehash
|
2017-07-19 23:30:27 +02:00
|
|
|
- phpenv config-rm xdebug.ini
|
|
|
|
- echo 'memory_limit = 2G' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
|
2013-10-10 00:38:08 +02:00
|
|
|
|
2017-07-19 23:30:27 +02:00
|
|
|
# Install composer dependencies
|
|
|
|
- composer install --prefer-dist
|
|
|
|
- composer require --prefer-dist --no-update symfony/config:^3.2 silverstripe/framework:4.0.x-dev silverstripe/cms:4.0.x-dev silverstripe/admin:1.0.x-dev silverstripe/assets:1.0.x-dev silverstripe/versioned:1.0.x-dev
|
|
|
|
- composer update
|
|
|
|
|
|
|
|
- if [[ $DB == PGSQL ]]; then composer require silverstripe/postgresql:2.0.x-dev --prefer-dist; fi
|
2016-01-20 20:37:43 +01:00
|
|
|
|
2017-07-19 23:30:27 +02:00
|
|
|
script:
|
|
|
|
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit tests/; fi
|
|
|
|
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml tests/; fi
|
|
|
|
- if [[ $PHPCS_TEST ]]; then composer run-script lint; fi
|
2016-01-20 20:37:43 +01:00
|
|
|
|
2017-01-26 12:20:25 +01:00
|
|
|
after_success:
|
2017-07-19 23:30:27 +02:00
|
|
|
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
|