-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.travis.yml
42 lines (35 loc) · 875 Bytes
/
.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
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.0
- 7.1
- nightly
env:
- PHPUNIT=5.0.* COMPOSER_OPTS="--prefer-lowest"
- PHPUNIT=5.1.*
- PHPUNIT=5.2.*
- PHPUNIT=5.3.*
- PHPUNIT=5.4.*
- PHPUNIT=5.5.*
- PHPUNIT=5.6.*
- PHPUNIT=5.7.*
- PHPUNIT=6.0.*
- PHPUNIT=6.1.*
- PHPUNIT=6.2.*
- PHPUNIT=6.3.*
- PHPUNIT=6.4.*
- PHPUNIT=6.5.*
before_script:
- phpenv config-rm xdebug.ini || true
- composer self-update
- composer require phpunit/phpunit:${PHPUNIT} ${COMPOSER_OPTS}
- git config --global user.name travis-ci
- git config --global user.email [email protected]
script:
- ./bin/phpchunkit --exclude-group=functional --parallel=2 --num-chunks=4 --verbose --debug
- ./bin/phpchunkit --group=functional --sandbox --create-dbs --parallel=2 --num-chunks=4 --verbose --debug
git:
depth: 1