forked from tourstream/typo3-redis-lock-strategy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (37 loc) · 1019 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
43
44
language: php
matrix:
include:
- php: 7.0
env: deps=high
- php: 7.0
env: deps=low
- php: 7.1
env: deps=low
- php: 7.1
env: deps=high
fast_finish: true
## Cache composer bits
cache:
directories:
- $HOME/.composer/cache/files
env:
global:
TYPO3_PATH_WEB=$TRAVIS_BUILD_DIR/.Build/Web
typo3DatabaseName=lock
typo3DatabaseHost=localhost
typo3DatabaseUsername=root
typo3DatabasePassword=''
typo3RedisHost=localhost
typo3RedisDatabase=1
services:
- redis-server
- mysql
before_install:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
install:
- if [ "$deps" = "low" ]; then composer --prefer-lowest --prefer-stable update; else composer update; fi;
script:
- .Build/bin/phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover