summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2501354e5ab8224bfd3d123298feb3fb2e5b290d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
language: php

matrix:
  include:
    - php: 7.3
      dist: bionic
    - php: 7.4
      dist: focal
    - php: 8.0
      dist: focal

## Non-sudo environments are faster
sudo: false

## Cache composer and vendor libraries
cache:
  directories:
    - vendor
    - $HOME/.composer/cache

before_script:
  - travis_retry composer config github-oauth.github.com "${GITHUB_OAUTH_TOKEN}"
  - travis_retry composer install

# Coverage testing is slow, so only do it once.
script:
  - if [ $TRAVIS_PHP_VERSION  = 7.4 ]; then XDEBUG_MODE=coverage vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover tests/clover.xml; fi
  - if [ $TRAVIS_PHP_VERSION != 7.4 ]; then vendor/bin/phpunit -c phpunit.xml.dist; fi

after_script:
  - if [ $TRAVIS_PHP_VERSION = 7.4 ]; then travis_retry php vendor/bin/php-coveralls -v; fi