Skip to content
Snippets Groups Projects
Verified Commit f28dd3f9 authored by Tomas Krizek's avatar Tomas Krizek
Browse files

distro/tests: remove obsolete distros

parent ae51598d
No related branches found
No related tags found
1 merge request!1026ci: automate OBS builds and packaging tests
# -*- mode: ruby -*-
# vi: set ft=ruby :
#
Vagrant.configure(2) do |config|
config.vm.box = "fedora/28-cloud-base"
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.define "fedora28_knot-dns" do |machine|
machine.vm.provision "ansible" do |ansible|
ansible.playbook = "../knot-dns-test.yaml"
ansible.extra_vars = {
ansible_python_interpreter: "/usr/bin/python3"
}
end
end
end
# -*- mode: ruby -*-
# vi: set ft=ruby :
#
Vagrant.configure(2) do |config|
config.vm.box = "generic/ubuntu1810"
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.define "ubuntu1810_knot-dns" do |machine|
machine.vm.provision "ansible" do |ansible|
ansible.playbook = "../knot-dns-test.yaml"
ansible.extra_vars = {
ansible_python_interpreter: "/usr/bin/python3"
}
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment