2017-01-22 11:19:44 +00:00
|
|
|
# -*- mode: ruby -*-
|
2017-01-22 13:18:02 +00:00
|
|
|
# vi: set ft=ruby ts=2 sts=2 sw=2 et :
|
2017-01-22 11:19:44 +00:00
|
|
|
|
|
|
|
# All Vagrant configuration is done below. The "2" in Vagrant.configure
|
|
|
|
# configures the configuration version (we support older styles for
|
|
|
|
# backwards compatibility). Please don't change it unless you know what
|
|
|
|
# you're doing.
|
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
# Every Vagrant development environment requires a box. You can search for
|
|
|
|
# boxes at https://atlas.hashicorp.com/search.
|
2017-01-22 13:18:02 +00:00
|
|
|
config.vm.box = "ubuntu/trusty64"
|
2017-01-22 11:19:44 +00:00
|
|
|
|
|
|
|
# Share an additional folder to the guest VM. The first argument is
|
|
|
|
# the path on the host to the actual folder. The second argument is
|
|
|
|
# the path on the guest to mount the folder. And the optional third
|
|
|
|
# argument is a set of non-required options.
|
|
|
|
config.vm.synced_folder ".", "/data/v8js"
|
|
|
|
|
2017-03-06 20:12:33 +00:00
|
|
|
config.vm.provider "lxc" do |lxc, override|
|
|
|
|
override.vm.box = "fgrehm/trusty64-lxc"
|
|
|
|
end
|
|
|
|
|
2017-01-22 11:19:44 +00:00
|
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
|
|
gpg --keyserver keys.gnupg.net --recv 7F438280EF8D349F
|
|
|
|
gpg --armor --export 7F438280EF8D349F | apt-key add -
|
|
|
|
|
|
|
|
apt-get update
|
2017-01-22 13:18:02 +00:00
|
|
|
apt-get install -y software-properties-common gdb tmux git tig curl apache2-utils
|
2017-01-22 11:19:44 +00:00
|
|
|
add-apt-repository ppa:ondrej/php
|
2017-01-22 13:18:02 +00:00
|
|
|
SHELL
|
|
|
|
|
2017-03-11 17:10:14 +00:00
|
|
|
%w{5.2 5.7 5.8}.each { |version|
|
|
|
|
config.vm.define "v8-#{version}" do |i|
|
|
|
|
i.vm.provision "shell", inline: <<-SHELL
|
|
|
|
add-apt-repository ppa:pinepain/libv8-#{version}
|
|
|
|
apt-get update
|
2017-03-11 17:11:27 +00:00
|
|
|
apt-get install -y php7.1-dev libv8-#{version}-dbg libv8-#{version}-dev
|
2017-03-11 17:10:14 +00:00
|
|
|
SHELL
|
|
|
|
end
|
|
|
|
}
|
2017-01-22 11:19:44 +00:00
|
|
|
end
|