Merge pull request #71 from creative-commoners/pulls/3.0/xenial

Update to Xenial, expand build matrix
This commit is contained in:
Robbie Averill 2019-11-20 00:18:27 -08:00 committed by GitHub
commit dce36b8fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 5 deletions

View File

@ -1,5 +1,11 @@
language: php
dist: xenial
services:
- mysql
- postgresql
env:
global:
- COMPOSER_ROOT_VERSION="4.0.x-dev"
@ -7,19 +13,23 @@ env:
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
env: DB=MYSQL PHPUNIT_TEST=1 RECIPE_VERSION="^1 --prefer-lowest"
- php: 7.0
env: DB=PGSQL PHPUNIT_TEST=1
env: DB=MYSQL PHPUNIT_TEST=1 RECIPE_VERSION="^1"
- php: 7.1
env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1
env: DB=PGSQL PHPUNIT_TEST=1 RECIPE_VERSION="^4 --prefer-lowest"
- php: 7.2
env: DB=PGSQL PHPUNIT_COVERAGE_TEST=1 RECIPE_VERSION="^4"
- php: 7.3
env: DB=PGSQL PHPCS_TEST=1 PHPUNIT_TEST=1 RECIPE_VERSION="4.x-dev"
before_script:
- phpenv rehash
- phpenv config-rm xdebug.ini
- composer validate
- composer require --no-update silverstripe/recipe-cms:1.0.x-dev silverstripe/userforms:5.0.x-dev
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql:2.0.x-dev; fi
- composer require --no-update silverstripe/userforms:5.x-dev silverstripe/recipe-cms:$RECIPE_VERSION
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql:^2; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script: