2017-09-15 12:57:32 +02:00
|
|
|
language: php
|
2015-07-20 17:05:32 +02:00
|
|
|
|
2017-09-15 12:57:32 +02:00
|
|
|
dist: trusty
|
2017-07-26 11:43:43 +02:00
|
|
|
|
2017-09-15 12:57:32 +02:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.composer/cache/files
|
2015-12-15 23:06:57 +01:00
|
|
|
|
2017-06-21 06:30:14 +02:00
|
|
|
env:
|
|
|
|
global:
|
2018-02-07 06:08:26 +01:00
|
|
|
- COMPOSER_ROOT_VERSION=5.x-dev
|
2017-06-21 06:30:14 +02:00
|
|
|
- CORE_RELEASE=master
|
|
|
|
|
2013-03-29 10:19:52 +01:00
|
|
|
matrix:
|
2017-04-13 03:52:16 +02:00
|
|
|
fast_finish: true
|
2013-03-29 10:19:52 +01:00
|
|
|
include:
|
2018-02-14 02:16:19 +01:00
|
|
|
- php: 7.1
|
2017-04-13 03:52:16 +02:00
|
|
|
env: DB=MYSQL PHPUNIT_TEST=1 PHPCS_TEST=1
|
2018-02-14 02:16:19 +01:00
|
|
|
- php: 7.1
|
|
|
|
env: DB=PGSQL PHPUNIT_TEST=1
|
2017-07-16 06:42:16 +02:00
|
|
|
- php: 7.1
|
2017-04-13 03:52:16 +02:00
|
|
|
env: DB=MYSQL PDO=1 PHPUNIT_COVERAGE_TEST=1
|
2013-03-29 10:19:52 +01:00
|
|
|
|
|
|
|
before_script:
|
2017-09-15 12:57:32 +02:00
|
|
|
# Init PHP
|
2017-04-13 03:52:16 +02:00
|
|
|
- phpenv rehash
|
2017-09-15 12:57:32 +02:00
|
|
|
- phpenv config-rm xdebug.ini || true
|
|
|
|
|
|
|
|
# Install composer dependencies
|
|
|
|
- export PATH=~/.composer/vendor/bin:$PATH
|
2017-04-13 03:52:16 +02:00
|
|
|
- composer validate
|
2018-02-07 06:08:26 +01:00
|
|
|
- if [[ $DB == PGSQL ]]; then composer require silverstripe/postgresql:3.x-dev --no-update; fi
|
|
|
|
- if [[ $DB == SQLITE ]]; then composer require silverstripe/sqlite3:3.x-dev --no-update; fi
|
2018-06-27 04:30:52 +02:00
|
|
|
- composer require silverstripe/recipe-core:5.x-dev silverstripe/admin:2.x-dev silverstripe/versioned:2.x-dev --no-update
|
2017-09-15 12:57:32 +02:00
|
|
|
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
|
2013-03-29 10:19:52 +01:00
|
|
|
|
2015-12-15 23:06:57 +01:00
|
|
|
script:
|
2017-09-15 12:57:32 +02:00
|
|
|
- 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
|
2017-04-13 03:52:16 +02:00
|
|
|
|
|
|
|
after_success:
|
2017-09-15 12:57:32 +02:00
|
|
|
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
|