Skip to content

Commit

Permalink
Update travis
Browse files Browse the repository at this point in the history
  • Loading branch information
wilr authored Apr 8, 2021
1 parent c8d1e4e commit c44423a
Showing 1 changed file with 14 additions and 22 deletions.
36 changes: 14 additions & 22 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c44423a

Please sign in to comment.