Skip to content

Commit

Permalink
Migrated Travis to new container infrastructure (http://docs.travis-c…
Browse files Browse the repository at this point in the history
  • Loading branch information
SidRoberts committed Jul 14, 2015
1 parent 553c2f5 commit bbfa7f9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: php

sudo: false

php:
- 5.3
- 5.4
Expand All @@ -26,14 +28,13 @@ before_script:
- (cd php-tests/library/Twig; git checkout master)
- (cd vendor/phalcon/zephir; ./unit-tests/ci/before_install.sh; ./install)
- ./vendor/bin/zephir generate
- (cd ext; export CFLAGS="-g3 -O1 -std=gnu90 -Wall -DZEPHIR_RELEASE=1"; phpize && ./configure --enable-phalcon && make --silent -j4 && sudo make --silent install && phpenv config-add ../unit-tests/ci/phalcon.ini)
- (cd ext; export CFLAGS="-g3 -O1 -std=gnu90 -Wall -DZEPHIR_RELEASE=1"; phpize && ./configure --enable-phalcon && make --silent -j4 && make --silent install && phpenv config-add ../unit-tests/ci/phalcon.ini)
- ulimit -c unlimited || true

script:
- ./run-tests.sh

after_failure:
- sudo apt-get -qq install gdb
- ./unit-tests/ci/after_failure.sh

notifications:
Expand All @@ -42,3 +43,7 @@ notifications:
- eduar@phalconphp.com
- nikos@phalconphp.com

addons:
apt:
packages:
- gdb

0 comments on commit bbfa7f9

Please sign in to comment.