Skip to content

Commit

Permalink
Merge a5f0c2a into f347d1d
Browse files Browse the repository at this point in the history
  • Loading branch information
dnsl48 committed Nov 4, 2019
2 parents f347d1d + a5f0c2a commit d7d4912
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 26 deletions.
31 changes: 21 additions & 10 deletions .travis.yml
@@ -1,33 +1,44 @@
language: php

dist: xenial

services:
- mysql
- postgresql

addons:
apt:
packages:
- tidy

env:
global:
- COMPOSER_ROOT_VERSION="2.0.x-dev"

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

before_script:
- phpenv rehash
- phpenv config-rm xdebug.ini

- composer validate
- composer require --no-update silverstripe/recipe-core:"$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-core:^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/ *.php; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs --standard=vendor/silverstripe/framework/phpcs.xml.dist src/ tests/ *.php; fi

after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
9 changes: 2 additions & 7 deletions composer.json
Expand Up @@ -15,19 +15,14 @@
}
],
"require": {
"silverstripe/framework": "^4.0",
"silverstripe/versioned": "^1.0",
"silverstripe/framework": "^4",
"silverstripe/versioned": "^1",
"guzzlehttp/guzzle": "^6.3.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
},
"autoload": {
"psr-4": {
"SilverStripe\\EnvironmentCheck\\": "src/",
Expand Down
9 changes: 0 additions & 9 deletions phpcs.xml.dist

This file was deleted.

0 comments on commit d7d4912

Please sign in to comment.