1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-30 04:39:01 +01:00
parallel/Vagrantfile

22 lines
566 B
Ruby
Raw Normal View History

2015-08-03 03:48:29 +02:00
Vagrant.configure(2) do |config|
config.vm.box = "coderstephen/php-dev"
config.vm.provision "shell", inline: <<-SHELL
newphp 56 zts debug
# Install xdebug
sudo pickle install -n xdebug
echo 'zend_extension=xdebug.so' >> `php -i | grep php-cli.ini | awk '{print $5}'`
# Install pthreads from master
git clone https://github.com/krakjoe/pthreads
cd pthreads
2015-12-05 04:46:17 +01:00
git checkout PHP5
phpize
./configure
make
sudo make install
echo 'extension=pthreads.so' >> `php -i | grep php-cli.ini | awk '{print $5}'`
2015-08-03 03:48:29 +02:00
SHELL
end