Adding Vagrantfile for local testing
Running `vagrant up ubuntu1404` brings up a Trusty box and runs all of the gate checks Change-Id: I47525461bc1e9a2145e754d1243ee1cb090e906c
This commit is contained in:
parent
dbcd0986a3
commit
9596eb5af0
5
.gitignore
vendored
5
.gitignore
vendored
@ -29,6 +29,7 @@ doc/build/
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
||||
logs/*
|
||||
|
||||
# OS generated files #
|
||||
######################
|
||||
@ -61,3 +62,7 @@ releasenotes/build
|
||||
|
||||
# Test temp files
|
||||
tests/plugins
|
||||
|
||||
# Vagrant artifacts
|
||||
.vagrant
|
||||
|
||||
|
24
Vagrantfile
vendored
Normal file
24
Vagrantfile
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
Vagrant.configure(2) do |config|
|
||||
config.vm.provider "virtualbox" do |v|
|
||||
v.memory = 2048
|
||||
v.cpus = 2
|
||||
end
|
||||
|
||||
config.vm.define "ubuntu1404" do |trusty|
|
||||
trusty.vm.box = "ubuntu/trusty64"
|
||||
trusty.vm.provision "shell", inline: <<-SHELL
|
||||
sudo su -
|
||||
cd /vagrant
|
||||
./run_tests.sh
|
||||
SHELL
|
||||
end
|
||||
|
||||
config.vm.define "ubuntu1604" do |xenial|
|
||||
xenial.vm.box = "ubuntu/xenial64"
|
||||
xenial.vm.provision "shell", inline: <<-SHELL
|
||||
sudo su -
|
||||
cd /vagrant
|
||||
./run_tests.sh
|
||||
SHELL
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user