diff --git a/.gitignore b/.gitignore index 6075d492..42eed335 100644 --- a/.gitignore +++ b/.gitignore @@ -64,3 +64,6 @@ tests/plugins # Files created by releasenotes build releasenotes/build + +# Vagrant testing artifacts +.vagrant diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 00000000..d09fc560 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,13 @@ +Vagrant.configure(2) do |config| + config.vm.box = "ubuntu/trusty64" + config.vm.provider "virtualbox" do |v| + v.memory = 2048 + v.cpus = 2 + end + config.vm.provision "shell", inline: <<-SHELL + sudo su - + cd /vagrant + apt-get update + ./run_tests.sh + SHELL +end \ No newline at end of file