LoginSignup
2
2

More than 5 years have passed since last update.

travisでmemcache, apc等用意されてないphp extensionを利用するスクリプト

Posted at

before_script:
- 'wget http://pecl.php.net/get/memcache-2.2.6.tgz ; tar -xzf memcache-2.2.6.tgz; sh -c "cd memcache-2.2.6 && phpize && ./configure --enable-memcache && make && sudo make install" ; echo "extension=memcache.so" >> php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"'
- 'wget http://pecl.php.net/get/APC-3.1.9.tgz ; tar -xzf APC-3.1.9.tgz ; sh -c "cd APC-3.1.9 && phpize && ./configure && make && sudo make install" ; echo "extension=apc.so" >> php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"'

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2