diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-01-23 01:39:39 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-01-23 01:39:39 +0100 |
commit | bd180b8e3867c0b66d7ce4edd96502244d9d71c1 (patch) | |
tree | 94077a3b17c801c13aba1a816ab64bcd280df86f | |
parent | aa7350eba731496e11956b78d99d57aeaafaad58 (diff) | |
download | forums-bd180b8e3867c0b66d7ce4edd96502244d9d71c1.tar forums-bd180b8e3867c0b66d7ce4edd96502244d9d71c1.tar.gz forums-bd180b8e3867c0b66d7ce4edd96502244d9d71c1.tar.bz2 forums-bd180b8e3867c0b66d7ce4edd96502244d9d71c1.tar.xz forums-bd180b8e3867c0b66d7ce4edd96502244d9d71c1.zip |
[ticket/11338] Travis CI: Install PHP extension for redis key-value store.
PHPBB3-11338
-rw-r--r-- | .travis.yml | 1 | ||||
-rwxr-xr-x | travis/install-php-extensions.sh | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index d7c472cd72..616bd7d4db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,7 @@ before_script: - sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'DROP DATABASE IF EXISTS phpbb_tests;' -U postgres; fi" - sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database phpbb_tests;' -U postgres; fi" - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database IF NOT EXISTS phpbb_tests;'; fi" + - travis/install-php-extensions.sh - pyrus set auto_discover 1 - pyrus install --force phpunit/DbUnit - phpenv rehash diff --git a/travis/install-php-extensions.sh b/travis/install-php-extensions.sh new file mode 100755 index 0000000000..55955c2905 --- /dev/null +++ b/travis/install-php-extensions.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# +# @copyright (c) 2013 phpBB Group +# @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +# +set -e + +function add_ext_to_php_ini +{ + echo "extension=$1.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` +} + +# redis +git clone git://github.com/nicolasff/phpredis.git +cd phpredis +phpize +./configure +make +make install +cd .. +add_ext_to_php_ini 'redis' |