forked from phpro/grumphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
36 lines (30 loc) · 798 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
language: php
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 5.3
- php: 5.3
env: DEPENDENCIES='low'
- php: 5.4
- php: 5.5
- php: 5.6
- php: 5.6
env: DEPENDENCIES='low'
- php: 7.0
- php: hhvm
fast_finish: true
before_install:
- composer selfupdate
- composer global require hirak/prestissimo
install:
- if [ "$DEPENDENCIES" != "low" ]; then travis_retry composer update --no-progress --profile --prefer-dist --no-scripts --no-interaction; fi;
- if [ "$DEPENDENCIES" == "low" ]; then travis_retry composer update --no-progress --profile --prefer-lowest --no-scripts --no-interaction; fi;
script:
- ./bin/grumphp run
notifications:
irc:
skip_join: true
channels:
- "chat.freenode.net#grumphp"