forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (33 loc) · 1.04 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
language:
- php
- c
php:
- 5.3
- 5.3.3
- 5.4
- 5.5
- 5.6
services:
- mongodb
- memcached
before_install:
- ./unit-tests/ci/install_prereqs.sh
- ./unit-tests/ci/setup_dbs.sh
install:
- composer --prefer-source install
before_script:
- git submodule --quiet update --init --recursive
- (cd ext; export CFLAGS="-g3 -O1 -std=gnu90 -Wall -Werror -Wno-error=uninitialized"; phpize && ./configure --silent --enable-phalcon && make --silent -j4 > /dev/null && sudo make --silent install && phpenv config-add ../unit-tests/ci/phalcon.ini)
- ulimit -c unlimited || true
script:
- ZEND_DONT_UNLOAD_MODULES=1 $(phpenv which php) ./unit-tests/ci/phpunit.php --debug -c unit-tests/phpunit.xml
- ZEND_DONT_UNLOAD_MODULES=1 PHALCON_NO_RVO=1 $(phpenv which php) ./unit-tests/ci/phpunit.php --debug -c unit-tests/phpunit.xml
after_failure:
- sudo apt-get -qq install gdb
- ./unit-tests/ci/after_failure.sh
notifications:
email:
- andres@phalconphp.com
- eduar@phalconphp.com
- nikos@phalconphp.com
- vladimir@phalconphp.com