-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.travis.yml
57 lines (51 loc) · 1.23 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
language: php
sudo: false
## Cache composer bits
cache:
directories:
- $HOME/.composer/cache
## PHP versions we test against
php:
- 5.5
- 5.6
- 7
- 7.1
- nightly
- hhvm
## Build matrix for lowest and highest possible targets
matrix:
include:
- php: 5.5
env: dependencies=lowest
- php: 5.6
env: dependencies=lowest
- php: 7
env: dependencies=lowest
- php: 7.1
env: dependencies=lowest
- php: nightly
env: dependencies=lowest
- php: hhvm
env: dependencies=lowest
- php: 5.5
env: dependencies=highest
- php: 5.6
env: dependencies=highest
- php: 7
env: dependencies=highest
- php: 7.1
env: dependencies=highest
- php: nightly
env: dependencies=highest
- php: hhvm
env: dependencies=highest
## Update composer and run the appropriate composer command
before_script:
- if [ -z "$dependencies" ]; then composer install; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update -n; fi;
- composer show -i
## Run the actual test
script: make travis
## Send coverage report to scrutinizer
after_script: make travis-coverage