Skip to content
Snippets Groups Projects
Verified Commit 1c234135 authored by Tomas Krizek's avatar Tomas Krizek Committed by Vladimír Čunát
Browse files

distro/tests: remove fedora28, ubuntu1810 (eol)

parent 80b21ff2
Branches
Tags
1 merge request!824distrotests: automate packaging tests in GitLab CI
# -*- 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-resolver" do |machine|
machine.vm.provision "ansible" do |ansible|
ansible.playbook = "../knot-resolver-pkgtest.yaml"
ansible.extra_vars = {
ansible_python_interpreter: "/usr/bin/python3"
}
end
end
config.vm.provider :libvirt do |libvirt|
libvirt.cpus = 1
libvirt.memory = 512
end
end
../.ansible.cfg
\ No newline at end of file
# -*- 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-resolver" do |machine|
machine.vm.provision "ansible" do |ansible|
ansible.playbook = "../knot-resolver-pkgtest.yaml"
ansible.extra_vars = {
ansible_python_interpreter: "/usr/bin/python3"
}
end
end
config.vm.provider :libvirt do |libvirt|
libvirt.cpus = 1
libvirt.memory = 512
end
end
../.ansible.cfg
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment