checking if we really need this
[m6w6/ext-http] / .travis.yml
1 # autogenerated file; do not edit
2 language: c
3
4 addons:
5 apt:
6 packages:
7 - php5-cli
8 - php-pear
9 - libcurl4-openssl-dev
10 - zlib1g-dev
11 - libidn11-dev
12 - libevent-dev
13
14 env:
15 # once with gcov
16 - CFLAGS="-O0 -g --coverage" CXXFLAGS="-O0 -g --coverage" PHP=master enable_json=yes enable_hash=yes enable_iconv=yes
17
18 before_script:
19 - make -f travis/pecl/Makefile php
20 - make -f travis/pecl/Makefile pecl PECL=raphf:raphf:2.0.0
21 - make -f travis/pecl/Makefile pecl PECL=propro:propro:2.0.1
22 - make -f travis/pecl/Makefile ext PECL=http
23
24 script:
25 - make -f travis/pecl/Makefile test
26
27 after_failure:
28 - test -e tests/helper/server.log && cat tests/helper/server.log
29 after_success:
30 - pwd && find . -name '*.gc*'
31 - test -n "$CFLAGS" && bash <(curl -s https://codecov.io/bash) -X xcode -X coveragepy
32
33 sudo: false
34 notifications:
35 webhooks:
36 urls:
37 - https://webhooks.gitter.im/e/28d35158ac7e385bd14d
38 on_success: change
39 on_failure: always
40 on_start: never