-
Notifications
You must be signed in to change notification settings - Fork 10
/
.travis.yml
44 lines (35 loc) · 1.06 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
sudo: required
language: php
php:
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
services:
- docker
matrix:
fast_finish: true
include:
- php: 5.6
services:
- docker
env: setup=lowest
- php: 5.6
services:
- docker
env: setup=stable
cache:
directories:
- $HOME/.composer/cache
before_install:
- docker pull centrifugo/centrifugo
- docker run -d --net=host --ulimit nofile=65536:65536 -v $TRAVIS_BUILD_DIR/tests:/centrifugo -p 8000:8000 centrifugo/centrifugo centrifugo -c config.json
- docker ps -a
- travis_retry composer self-update
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction --no-suggest; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable --prefer-lowest; fi
script: vendor/bin/phpunit