a02ba55cdc
openSUSE Leap 42.1 will soon be EOL. However, openSUSE Leap 42.2 Vagrant images are now available on Atlas so use these instead. Change-Id: I0a5c4c5f523343ad610328e72e965ccf1e873989
27 lines
534 B
Ruby
27 lines
534 B
Ruby
Vagrant.configure(2) do |config|
|
|
config.vm.provider "virtualbox" do |v|
|
|
v.memory = 2048
|
|
v.cpus = 2
|
|
end
|
|
|
|
config.vm.provision "shell",
|
|
privileged: false,
|
|
inline: <<-SHELL
|
|
cd /vagrant
|
|
./run_tests.sh
|
|
SHELL
|
|
|
|
config.vm.define "ubuntu1604" do |xenial|
|
|
xenial.vm.box = "ubuntu/xenial64"
|
|
end
|
|
|
|
config.vm.define "opensuse422" do |leap422|
|
|
leap422.vm.box = "opensuse/openSUSE-42.2-x86_64"
|
|
end
|
|
|
|
config.vm.define "centos7" do |centos7|
|
|
centos7.vm.box = "centos/7"
|
|
end
|
|
|
|
end
|