fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
662 B
25 lines
662 B
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
|
VAGRANTFILE_API_VERSION = "2"
|
|
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
|
|
config.vm.define "linux32" do |linux32|
|
|
linux32.vm.box = "hansode/centos-5.6-i386"
|
|
end
|
|
|
|
config.vm.define "linux64" do |linux64|
|
|
linux64.vm.box = "hansode/centos-5.6-x86_64"
|
|
end
|
|
|
|
config.vm.provider "virtualbox" do |v|
|
|
v.memory = 2048
|
|
v.cpus = 4
|
|
end
|
|
|
|
config.vm.provision :shell, path: "build-linux-centos.sh"
|
|
config.vm.synced_folder "../", "/rocksdb-build"
|
|
config.vm.synced_folder "../..", "/rocksdb", type: "rsync"
|
|
end
|
|
|