Adding Vagrantfile for local developer testing

This Vagrantfile attempts to replicate the gate check
testing to the extent possible to allow developers to
run all tests locally in a Vagrant environment prior
to submitting changes for review.

Memory and CPU config is adjusted as Galera cannot
install/run successfully on the default config.

Change-Id: I1289d576934244edf0176ec4e25a11fc75738c0f
This commit is contained in:
Travis Truman 2016-03-05 15:42:37 -05:00
parent fb5488203a
commit acac122e9a
3 changed files with 16 additions and 0 deletions

3
.gitignore vendored
View File

@ -60,3 +60,6 @@ releasenotes/build
# Test temp files
tests/plugins
# Vagrant testing artifacts
.vagrant

13
Vagrantfile vendored Normal file
View File

@ -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

0
run_tests.sh Normal file → Executable file
View File