0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 18:05:18 +00:00

(Vagrantfile) add fedora25-32 box, refs #270

This commit is contained in:
Stefan Siegl 2017-03-12 10:09:21 +01:00
parent 417ae46943
commit fbb40fdd6f

15
Vagrantfile vendored
View File

@ -85,6 +85,21 @@ Vagrant.configure("2") do |config|
end
#
# Fedora 25 box with 32-bit
#
config.vm.define "fedora25-32" do |i|
i.vm.box = "wholebits/fedora25-32"
i.vm.synced_folder ".", "/data/v8js"
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
config.vm.provision "shell", inline: <<-SHELL
mkdir -p /data/build && chown vagrant:vagrant /data/build
SHELL