0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 21:15:19 +00:00

(Vagrantfile) use Ubuntu xenial (for newer gcc)

This commit is contained in:
Stefan Siegl 2017-04-23 22:48:52 +02:00
parent 98c2a6baec
commit c747933d0e
No known key found for this signature in database
GPG Key ID: 51575950154839CD

6
Vagrantfile vendored
View File

@ -8,17 +8,17 @@
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
# Every Vagrant development environment requires a box. You can search for # Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search. # boxes at https://atlas.hashicorp.com/search.
config.vm.box = "ubuntu/trusty64" config.vm.box = "ubuntu/xenial64"
config.vm.provider "lxc" do |lxc, override| config.vm.provider "lxc" do |lxc, override|
override.vm.box = "fgrehm/trusty64-lxc" override.vm.box = "zaikin/xenial64-lxc"
end end
# #
# mass-define "generic" Ubuntu boxes # mass-define "generic" Ubuntu boxes
# #
%w{5.1 5.2 5.4 5.7 5.8 5.9 6.0}.each { |version| %w{5.7 5.8 5.9 6.0}.each { |version|
config.vm.define "v8-#{version}" do |i| config.vm.define "v8-#{version}" do |i|
i.vm.synced_folder ".", "/data/v8js" i.vm.synced_folder ".", "/data/v8js"