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
|
|
|
|
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 13:18:02 +00:00
|
|
|
|
2017-03-11 19:59:47 +00:00
|
|
|
#
|
|
|
|
# mass-define "generic" Ubuntu boxes
|
|
|
|
#
|
2017-03-11 17:13:22 +00:00
|
|
|
%w{5.1 5.2 5.4 5.7 5.8 5.9}.each { |version|
|
2017-03-11 17:10:14 +00:00
|
|
|
config.vm.define "v8-#{version}" do |i|
|
2017-03-11 19:59:47 +00:00
|
|
|
i.vm.synced_folder ".", "/data/v8js"
|
|
|
|
|
2017-03-11 17:10:14 +00:00
|
|
|
i.vm.provision "shell", inline: <<-SHELL
|
2017-03-11 19:59:47 +00:00
|
|
|
gpg --keyserver keys.gnupg.net --recv 7F438280EF8D349F
|
|
|
|
gpg --armor --export 7F438280EF8D349F | apt-key add -
|
|
|
|
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y software-properties-common gdb tmux git tig curl apache2-utils
|
|
|
|
|
|
|
|
add-apt-repository ppa:ondrej/php
|
2017-03-11 17:10:14 +00:00
|
|
|
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-03-11 19:59:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Fedora-based box with GCC7, V8 5.2 + PHP 7.1 installed
|
|
|
|
# (primarily to reproduce #294)
|
|
|
|
#
|
|
|
|
config.vm.define "fedora-26-gcc7" do |i|
|
|
|
|
i.vm.box = "vbenes/fedora-rawhide-server"
|
|
|
|
i.ssh.insert_key = false
|
|
|
|
|
|
|
|
# unfortunately vboxsf isn't currently available (due to an issue with the base image)
|
|
|
|
# therefore fall back to nfs
|
|
|
|
i.vm.synced_folder ".", "/data/v8js", type: "nfs"
|
|
|
|
i.vm.network "private_network", ip: "192.168.50.2"
|
|
|
|
|
|
|
|
i.vm.provision "shell", inline: <<-SHELL
|
|
|
|
dnf -y update
|
|
|
|
dnf -y install gcc-c++ gdb tmux git tig curl vim
|
|
|
|
dnf -y install v8-devel php-devel
|
|
|
|
SHELL
|
|
|
|
end
|
|
|
|
|
2017-03-11 23:46:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# FreeBSD 11.0 box
|
|
|
|
# (compiles V8 5.1.281.47 with Gyp; using port from https://raw.githubusercontent.com/Kronuz/Xapiand/master/contrib/freebsd/v8.shar)
|
|
|
|
#
|
|
|
|
config.vm.define "freebsd-11" do |i|
|
|
|
|
i.vm.box = "freebsd/FreeBSD-11.0-RELEASE-p1"
|
|
|
|
i.ssh.shell = "/bin/sh"
|
|
|
|
|
|
|
|
# vboxsf doesn't work on FreeBSD (yet), use nfs
|
|
|
|
i.vm.synced_folder ".", "/data/v8js", type: "nfs"
|
|
|
|
i.vm.network "private_network", type: "dhcp"
|
|
|
|
|
|
|
|
i.vm.provision "shell", inline: <<-SHELL
|
|
|
|
pkg install -y git python bash gmake icu gdb tmux git tig curl vim autoconf php70
|
|
|
|
|
|
|
|
portsnap auto --interactive
|
|
|
|
|
|
|
|
mkdir -p /data && cd /data
|
|
|
|
[ -x v8 ] || curl https://raw.githubusercontent.com/Kronuz/Xapiand/master/contrib/freebsd/v8.shar | sh
|
|
|
|
|
|
|
|
cd /data/v8
|
|
|
|
make install
|
|
|
|
SHELL
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2017-03-11 19:59:47 +00:00
|
|
|
config.vm.provision "shell", inline: <<-SHELL
|
2017-03-11 23:46:25 +00:00
|
|
|
mkdir -p /data/build && chown vagrant:vagrant /data/build
|
2017-03-11 19:59:47 +00:00
|
|
|
SHELL
|
2017-01-22 11:19:44 +00:00
|
|
|
end
|