silverstripe-postgresql/.travis.yml

54 lines
1.3 KiB
YAML
Raw Normal View History

language: php
dist: xenial
services:
- postgresql
-
2017-07-26 12:55:24 +02:00
cache:
directories:
- $HOME/.composer/cache/files
2014-02-18 05:52:03 +01:00
php:
- 7.1
2014-02-18 05:52:03 +01:00
env:
2017-05-26 00:23:17 +02:00
global:
2017-07-26 15:24:11 +02:00
- DB="PGSQL"
matrix:
fast_finish: true
include:
- php: 7.1
env:
- PHPUNIT_TEST=framework
- php: 7.2
env:
- PHPUNIT_TEST=framework
- php: 7.3
env:
- PHPUNIT_TEST=framework
- php: 7.1
env:
- PHPUNIT_TEST=postgresql
- PHPCS_TEST=1
2014-02-18 05:52:03 +01:00
before_script:
2017-05-26 00:23:17 +02:00
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
- export PATH=~/.composer/vendor/bin:$PATH
2017-05-26 00:23:17 +02:00
- echo 'memory_limit = 2048M' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
# Install composer dependencies
- composer validate
- composer require --no-update silverstripe/recipe-cms:4.3.x-dev
2018-07-02 00:58:23 +02:00
- composer install --prefer-source --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
- if [[ $PHPCS_TEST ]]; then composer global require squizlabs/php_codesniffer:^3 --prefer-dist --no-interaction --no-progress --no-suggest -o; fi
2014-02-18 05:52:03 +01:00
2016-07-04 05:11:06 +02:00
script:
- if [[ $PHPUNIT_TEST == postgresql ]]; then vendor/bin/phpunit ./tests; fi
- if [[ $PHPUNIT_TEST == framework ]]; then vendor/bin/phpunit ./vendor/silverstripe/framework/tests/php; fi
- if [[ $PHPCS_TEST ]]; then composer run-script lint; fi