-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
76 lines (63 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
dist: trusty
sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- nightly
before_install:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{,.disabled} || echo "xdebug not available"
- composer self-update
install:
- travis_retry composer update --no-interaction --no-suggest --prefer-dist
script:
- vendor/bin/phpunit -c tests/phpunit.xml
stages:
- Lint
- Test
- Code Quality
jobs:
allow_failures:
- php: nightly
include:
- stage: Test
env: DEV_DEPENDENCIES
php: 7.2
install:
- composer config minimum-stability dev
- travis_retry composer update --no-interaction --no-suggest --prefer-dist
- stage: Test
env: LOWEST_DEPENDENCIES
php: 7.1
install:
- travis_retry composer update --no-interaction --no-suggest --prefer-dist --prefer-lowest
- stage: Test
env: COVERAGE
php: 7.1
before_script:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{.disabled,}
- if [[ ! $(php -m | grep -si xdebug) ]]; then echo "xdebug required for coverage"; exit 1; fi
script:
- vendor/bin/phpunit -c tests/phpunit.xml --coverage-clover tests/coverage.xml
after_script:
- travis_retry wget -O /tmp/coveralls.phar https://github.com/php-coveralls/php-coveralls/releases/download/v2.0.0/php-coveralls.phar
- php /tmp/coveralls.phar --verbose --config tests/.coveralls.yml
- stage: Lint
before_script:
- travis_retry composer create-project --no-interaction jakub-onderka/php-parallel-lint /tmp/php-parallel-lint
script:
- vendor/bin/parallel-lint -e php,phpt --exclude vendor .
- stage: Code Quality
env: STATIC_ANALYSIS
script:
- vendor/bin/phpstan.phar analyse --ansi --no-progress -l 7 -c phpstan.neon src/ tests/
- stage: Code Quality
env: CODING_STANDARDS
php: 7.1
script:
- vendor/bin/phpcs