This repository was archived by the owner on Feb 6, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ language: php
5
5
cache :
6
6
directories :
7
7
- $HOME/.composer/cache
8
+
8
9
env :
9
10
global :
10
11
- COMPOSER_ARGS="--no-interaction"
@@ -23,33 +24,36 @@ matrix:
23
24
env :
24
25
- DEPS=latest
25
26
- php : 7
27
+ env :
26
28
- DEPS=lowest
27
29
- php : 7
30
+ env :
28
31
- DEPS=locked
29
- - TEST_COVERAGE=true
32
+ - LEGACY_DEPS="phpunit/phpunit"
30
33
- php : 7
34
+ env :
31
35
- DEPS=latest
32
36
- php : 7.1
37
+ env :
33
38
- DEPS=lowest
34
39
- php : 7.1
40
+ env :
35
41
- DEPS=locked
42
+ - BENCHMARKS=true
36
43
- CS_CHECK=true
44
+ - TEST_COVERAGE=true
37
45
- php : 7.1
46
+ env :
38
47
- DEPS=latest
39
48
- php : 7.2
49
+ env :
40
50
- DEPS=lowest
41
51
- php : 7.2
52
+ env :
42
53
- DEPS=locked
43
54
- php : 7.2
55
+ env :
44
56
- DEPS=latest
45
- - php : hhvm
46
- - DEPS=lowest
47
- - php : hhvm
48
- - DEPS=locked
49
- - php : hhvm
50
- - DEPS=latest
51
- allow_failures :
52
- - php : hhvm
53
57
54
58
before_install :
55
59
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
@@ -64,11 +68,11 @@ install:
64
68
65
69
script :
66
70
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
71
+ - if [[ $BENCHMARKS == 'true' ]]; then vendor/bin/phpbench run --revs=2 --iterations=2 --report=aggregate ; fi
67
72
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
68
73
69
74
after_script :
70
75
- if [[ $TEST_COVERAGE == 'true' ]]; then composer upload-coverage ; fi
71
76
72
77
notifications :
73
78
email : false
74
-
You can’t perform that action at this time.
0 commit comments