Added manual install steps

Seems the PECL version of test-helpers isn't up to date. Had to compile it
manually locally and evidently have to do the same on travis-ci until pecl is
updated.
This commit is contained in:
Joshua Sherman 2014-01-12 16:17:55 -05:00
parent 984dfe66cc
commit 2357469d5b

View file

@ -10,8 +10,13 @@ matrix:
install: install:
- composer install - composer install
- pear channel-discover pear.phpunit.de - git clone git@github.com:php-test-helpers/php-test-helpers.git
- pecl install phpunit/test_helpers - cd php-test-helpers
- phpize
- ./configure --enable-test-helpers
- make
- sudo make install
- echo "extension=test_helpers.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
script: script:
- mkdir -p vendors/build/logs - mkdir -p vendors/build/logs