-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
161 lines (147 loc) · 5.87 KB
/
.travis.yml
File metadata and controls
161 lines (147 loc) · 5.87 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
sudo: false
language: php
matrix:
include:
- name: '[REQUIRE_CHECK] With Locked Dependencies'
php: '7.3'
env: require=1
- name: '[REQUIRE_CHECK] With Lowest Dependencies'
php: '7.3'
env: require=1 dependencies=lowest
- name: '[REQUIRE_CHECK] With Highest Dependencies'
php: '7.3'
env: require=1 dependencies=highest
- name: '[CS] PHP 7.3 With Locked Dependencies'
php: '7.3'
env: cs=1
- name: '[CS] PHP 7.3 With Lowest Dependencies'
php: '7.3'
env: cs=1 dependencies=lowest
- name: '[CS] PHP 7.3 With Highest Dependencies'
php: '7.3'
env: cs=1 dependencies=highest
- name: '[CS] PHP Nightly With Locked Dependencies'
php: nightly
env: cs=1
- name: '[CS] PHP Nightly With Lowest Dependencies'
php: nightly
env: cs=1 dependencies=lowest
- name: '[CS] PHP Nightly With Highest Dependencies'
php: nightly
env: cs=1 dependencies=highest
- name: '[UNIT] PHP 7.3 With Locked Dependencies'
php: '7.3'
env: unit=1
- name: '[UNIT] PHP 7.3 With Lowest Dependencies'
php: '7.3'
env: dependencies=lowest unit=1
- name: '[UNIT] PHP 7.3 With Highest Dependencies'
php: '7.3'
env: dependencies=highest unit=1
- name: '[UNIT] PHP Nightly With Locked Dependencies'
php: nightly
env: unit=1
- name: '[UNIT] PHP Nightly With Highest Dependencies'
php: nightly
env: dependencies=highest unit=1
- name: '[UNIT] PHP Nightly With Lowest Dependencies'
php: nightly
env: dependencies=lowest unit=1
- name: '[INTEGRATION] PHP 7.3 With Locked Dependencies'
php: '7.3'
env: integration=1
- name: '[INTEGRATION] PHP 7.3 With Lowest Dependencies'
php: '7.3'
env: dependencies=lowest integration=1
- name: '[INTEGRATION] PHP 7.3 With Highest Dependencies'
php: '7.3'
env: dependencies=highest integration=1
- name: '[INTEGRATION] PHP Nightly With Locked Dependencies'
php: nightly
env: integration=1
- name: '[INTEGRATION] PHP Nightly With Highest Dependencies'
php: nightly
env: dependencies=highest integration=1
- name: '[INTEGRATION] PHP Nightly With Lowest Dependencies'
php: nightly
env: dependencies=lowest integration=1
- name: '[INFECTION] PHP 7.3 With Locked Dependencies'
php: '7.3'
env: infection=1
- name: '[INFECTION] PHP 7.3 With Lowest Dependencies'
php: '7.3'
env: infection=1 dependencies=lowest
- name: '[INFECTION] PHP 7.3 With Highest Dependencies'
php: '7.3'
env: infection=1 dependencies=highest
- name: '[INFECTION] PHP Nightly With Locked Dependencies'
php: nightly
env: infection=1
- name: '[INFECTION] PHP Nightly With Lowest Dependencies'
php: nightly
env: infection=1 dependencies=lowest
- name: '[INFECTION] PHP Nightly With Highest Dependencies'
php: nightly
env: infection=1 dependencies=highest
allow_failures:
- name: '[CS] PHP Nightly With Locked Dependencies'
php: nightly
env: cs=1
- name: '[CS] PHP Nightly With Lowest Dependencies'
php: nightly
env: cs=1 dependencies=lowest
- name: '[CS] PHP Nightly With Highest Dependencies'
php: nightly
env: cs=1 dependencies=highest
- name: '[UNIT] PHP Nightly With Locked Dependencies'
php: nightly
env: unit=1
- name: '[UNIT] PHP Nightly With Highest Dependencies'
php: nightly
env: dependencies=highest unit=1
- name: '[UNIT] PHP Nightly With Lowest Dependencies'
php: nightly
env: dependencies=lowest unit=1
- name: '[INTEGRATION] PHP Nightly With Locked Dependencies'
php: nightly
env: integration=1
- name: '[INTEGRATION] PHP Nightly With Highest Dependencies'
php: nightly
env: dependencies=highest integration=1
- name: '[INTEGRATION] PHP Nightly With Lowest Dependencies'
php: nightly
env: dependencies=lowest integration=1
- name: '[INFECTION] PHP Nightly With Locked Dependencies'
php: nightly
env: infection=1
- name: '[INFECTION] PHP Nightly With Lowest Dependencies'
php: nightly
env: infection=1 dependencies=lowest
- name: '[INFECTION] PHP Nightly With Highest Dependencies'
php: nightly
env: infection=1 dependencies=highest
services:
- redis-server
before_install:
- phpenv config-rm xdebug.ini || echo "No xdebug config."
- composer self-update
install:
- wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.0.0/php-coveralls.phar
- chmod +x php-coveralls.phar
before_script:
- if [ -z "$dependencies" ]; then travis_retry composer install -n; fi;
- if [ "$dependencies" = "lowest" ]; then travis_retry composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then travis_retry composer update -n; fi;
- wget https://github.com/infection/infection/releases/download/0.12.2/infection.phar
- wget https://github.com/infection/infection/releases/download/0.12.2/infection.phar.asc
- gpg --keyserver hkps.pool.sks-keyservers.net --recv-keys 493B4AA0
- gpg --with-fingerprint --verify infection.phar.asc infection.phar
- chmod +x infection.phar
script:
- if [ "$unit" = 1 ]; then phpdbg -qrr vendor/bin/phpunit --testsuite HarmonIOCacheUnitTestSuite --coverage-text --coverage-clover build/logs/clover.xml; fi;
- if [ "$integration" = 1 ]; then phpdbg -qrr vendor/bin/phpunit --testsuite HarmonIOCacheIntegrationTestSuite --coverage-text --coverage-clover build/logs/clover.xml; fi;
- if [ "$cs" = 1 ]; then vendor/bin/phpcs -s; fi;
- if [ "$require" = 1 ]; then vendor/bin/composer-require-checker check; fi;
- if [ "$infection" = 1 ]; then phpdbg -qrr ./infection.phar --min-msi=100 --min-covered-msi=100 --threads=4 --show-mutations; fi;
after_success:
- if [ "$unit" = 1 ]; then travis_retry php php-coveralls.phar; fi;