diff --git a/.travis.yml b/.travis.yml index 60056c7..b91de20 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,38 +2,30 @@ language: php dist: trusty -cache: - directories: - - $HOME/.composer/cache/files - env: global: - - COMPOSER_ROOT_VERSION=4.2.x-dev - - CORE_RELEASE=master + - COMPOSER_ROOT_VERSION=2.x-dev matrix: - fast_finish: true include: - - php: 7.0 - env: DB=MYSQL PHPUNIT_TEST=1 - - php: 7.1 - env: DB=MYSQL PDO=1 PHPUNIT_COVERAGE_TEST=1 + - php: 7.4 + env: DB=MYSQL PHPUNIT_TEST=1 PHPCS_TEST=1 + - php: 7.4 + env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1 before_script: -# Init PHP + # Init PHP - phpenv rehash - - phpenv config-rm xdebug.ini || true - -# Install composer dependencies - - export PATH=~/.composer/vendor/bin:$PATH + - phpenv config-rm xdebug.ini - composer validate - - if [[ $DB == PGSQL ]]; then composer require silverstripe/postgresql:2.0.x-dev --no-update; fi - - if [[ $DB == SQLITE ]]; then composer require silverstripe/sqlite3:2.0.x-dev --no-update; fi - - composer require silverstripe/recipe-core:4.2.x-dev silverstripe/admin:1.2.x-dev silverstripe/versioned:1.2.x-dev --no-update + - composer require silverstripe/recipe-cms 4.7.x-dev --no-update - if [[ $PHPCS_TEST ]]; then composer global require squizlabs/php_codesniffer:^3 --prefer-dist --no-interaction --no-progress --no-suggest -o; fi - composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile script: - - 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 + - if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit tests/; 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 + +after_success: + - if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi