Commit 0a5b1a93 by Carsten Brandt

simplified memcache installation on travis

parent a1af321d
#!/bin/sh
install_memcache() {
# if [ "$(expr "$TRAVIS_PHP_VERSION" ">=" "5.5")" -eq 1 ]; then
# MEMCACHE_VERSION="2.2.7"
# wget "http://pecl.php.net/get/memcache-$MEMCACHE_VERSION.tgz" &&
# tar -zxf "memcache-$MEMCACHE_VERSION.tgz" &&
# sh -c "cd memcache-$MEMCACHE_VERSION && phpize && ./configure --enable-memcache && make && sudo make install"
# fi
echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
return $?
}
install_memcache > ~/memcache.log || ( echo "=== MEMCACHE BUILD FAILED ==="; cat ~/memcache.log )
echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment