-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
48 lines (37 loc) · 1.12 KB
/
.travis.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
language: php
dist: focal
sudo: false
group: edge
env:
global:
- SETUP=stable
- XDEBUG_MODE=coverage
php:
- 8.0
matrix:
fast_finish: true
include:
- php: 8.0
env: SETUP=stable
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- curl -s http://getcomposer.org/installer | php
- travis_retry composer install --no-interaction --prefer-source
- if [[ $SETUP = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable --no-suggest; fi
- if [[ $SETUP = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable --no-suggest; fi
before_script:
- mkdir -p build/logs
- php --version
- composer --version
script:
- XDEBUG_MODE=coverage vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
after_success:
- if [[ $SETUP = 'stable' ]]; then bash <(curl -s https://codecov.io/bash); fi
notifications:
email: false