Skip to content

Commit

Permalink
Merge f8116c8 into 3746cb1
Browse files Browse the repository at this point in the history
  • Loading branch information
dnsl48 committed Nov 1, 2019
2 parents 3746cb1 + f8116c8 commit 437650e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
26 changes: 14 additions & 12 deletions .travis.yml
@@ -1,19 +1,21 @@
language: php

dist: trusty
dist: xenial

services:
- mysql
- postgresql

matrix:
include:
- php: '5.6'
env: DB=MYSQL RECIPE_VERSION=4.3.x-dev PHPCS_TEST=1 PHPUNIT_TEST=1
- php: '7.0'
env: DB=MYSQL RECIPE_VERSION=4.3.x-dev PHPUNIT_TEST=1
- php: '7.1'
env: DB=PGSQL RECIPE_VERSION=4.4.x-dev PHPUNIT_COVERAGE_TEST=1
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: '7.1'
env: DB=PGSQL PHPUNIT_COVERAGE_TEST=1
- php: '7.2'
env: DB=MYSQL RECIPE_VERSION=4.5.x-dev PHPUNIT_TEST=1
env: DB=MYSQL PHPUNIT_TEST=1
- php: '7.3'
env: DB=MYSQL RECIPE_VERSION=4.x-dev PHPUNIT_TEST=1
env: DB=MYSQL PHPUNIT_TEST=1

before_script:
# Init PHP
Expand All @@ -22,14 +24,14 @@ before_script:

# Install composer dependencies
- composer validate
- composer require --no-update silverstripe/recipe-cms $RECIPE_VERSION
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql 2.x-dev; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
- composer require --no-update silverstripe/recipe-cms:^4
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql:^2; fi
- composer install --prefer-source --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile

script:
- 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 src/ tests/; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs --standard=vendor/silverstripe/framework/phpcs.xml.dist src/ tests/; fi

after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
5 changes: 1 addition & 4 deletions composer.json
Expand Up @@ -30,10 +30,7 @@
"expose": [
"css",
"javascript"
],
"branch-alias": {
"dev-master": "2.x-dev"
}
]
},
"minimum-stability": "dev",
"prefer-stable": true
Expand Down

0 comments on commit 437650e

Please sign in to comment.