Skip to content
This repository was archived by the owner on Sep 20, 2021. It is now read-only.

Commit ef475ca

Browse files
committed
debug travis
1 parent a4588a9 commit ef475ca

File tree

1 file changed

+49
-1
lines changed

1 file changed

+49
-1
lines changed

.travis.yml

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,72 @@ language: php
22

33
matrix:
44
include:
5+
- php: 5.5
6+
- php: 5.6
57
- php: 7.0
8+
- php: 7.1
69
env:
710
- ENABLE_XDEBUG=true
11+
- php: 7.1
12+
env:
13+
- ENABLE_DEVTOOLS=true
14+
- php: nightly
15+
- php: hhvm-3.12
16+
sudo: required
17+
dist: trusty
18+
group: edge
19+
- php: hhvm
20+
sudo: required
21+
dist: trusty
22+
group: edge
23+
allow_failures:
24+
- php: nightly
25+
- php: hhvm-3.12
26+
- php: hhvm
827
fast_finish: true
928

1029
os:
1130
- linux
1231

32+
notifications:
33+
irc: "chat.freenode.net#hoaproject"
34+
1335
sudo: false
1436

37+
env:
38+
global:
39+
- secure: "AAAAB3NzaC1yc2EAAAADAQABAAAAgQCecwgg2D4ihDiYD9Af7hU7oroL108l1BJaxZ9N0GXmoaJj3JOHKjXgUjizhma5nftXRBJOcIhT4GsLAnFeNKgJv/97cAvm7miHeTLYPOiOpkrf/Zl7UIQ0MKSX91YKdneAGRDFaY0Tq5B9KjK68vu0Cof35h+cf59Ld3hTzrGPZw=="
40+
41+
cache:
42+
directories:
43+
- vendor/
44+
1545
before_script:
1646
- export PATH="$PATH:$HOME/.composer/vendor/bin"
47+
- phpenv config-add custom.ini
1748
- if [[ ! $ENABLE_XDEBUG ]]; then
1849
phpenv config-rm xdebug.ini || echo "ext-xdebug is not available, cannot remove it.";
1950
fi
2051

2152
script:
22-
- ls -lha
2353
- composer install
54+
- php -i | grep 'ICU version'
2455
- vendor/bin/hoa test:run
56+
- if [[ $ENABLE_DEVTOOLS ]]; then
57+
composer global require friendsofphp/php-cs-fixer;
58+
vendor/bin/hoa devtools:cs --diff --dry-run .;
59+
fi
60+
61+
addons:
62+
apt:
63+
packages:
64+
- unicode
65+
- unicode-data
66+
- ttf-ancient-fonts
67+
- xfonts-efont-unicode
68+
- unifont
69+
- ttf-unifont
70+
- locales
71+
- language-pack-en
72+
- language-pack-fr
2573

0 commit comments

Comments
 (0)