From aef3aa07b85cb3e9340cb2d95571aebf6f2638ab Mon Sep 17 00:00:00 2001 From: Martin Pärtel Date: Sun, 12 Mar 2017 01:05:20 +0000 Subject: Added Vagrant test runner, initially running some Ubuntus and CentOSes. --- vagrant/precise64/Vagrantfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 vagrant/precise64/Vagrantfile (limited to 'vagrant/precise64') diff --git a/vagrant/precise64/Vagrantfile b/vagrant/precise64/Vagrantfile new file mode 100644 index 0000000..22acd58 --- /dev/null +++ b/vagrant/precise64/Vagrantfile @@ -0,0 +1,25 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure("2") do |config| + config.vm.box = "ubuntu/precise64" + + config.vm.synced_folder ".", "/vagrant", disabled: true + config.vm.synced_folder "../../", "/bindfs", + type: "rsync", + rsync__auto: false, + rsync__exclude: ["vagrant"], + rsync__args: ["-av", "--delete-after"] + + config.vm.provider "virtualbox" do |v| + v.name = "bindfs-precise64" + end + + config.vm.provision "shell", inline: <<-SHELL + apt-get update + apt-get install -y fuse libfuse-dev build-essential pkg-config ruby1.9.3 valgrind + apt-get clean + adduser vagrant fuse + echo user_allow_other > /etc/fuse.conf + SHELL +end -- cgit v1.2.3