Skip to content
Snippets Groups Projects
Commit f965f576 authored by Tomas Krizek's avatar Tomas Krizek Committed by Daniel Salzman
Browse files

distro/tests: update to f32

parent 5dbc6665
Branches
Tags
1 merge request!1137Packaging: xdp and update distrotests
......@@ -420,18 +420,18 @@ obs:debian10:x86_64:
DISTROTEST_NAME: debian10
DISTROTEST_REPO: Debian_10
obs:fedora30:x86_64:
<<: *distrotest
variables:
DISTROTEST_NAME: fedora30
DISTROTEST_REPO: Fedora_30
obs:fedora31:x86_64:
<<: *distrotest
variables:
DISTROTEST_NAME: fedora31
DISTROTEST_REPO: Fedora_31
obs:fedora32:x86_64:
<<: *distrotest
variables:
DISTROTEST_NAME: fedora32
DISTROTEST_REPO: Fedora_32
obs:leap15:x86_64:
<<: *distrotest
variables:
......
......@@ -22,19 +22,19 @@ Run the following command for every distro (aka directory with
Vagrantfile):
```
./test-distro.sh devel debian9
./test-distro.sh knot-dns-devel debian9
```
or
```
./test-distro.sh testing debian9
./test-distro.sh knot-dns-testing debian9
```
or
```
./test-distro.sh latest debian9
./test-distro.sh knot-dns-latest debian9
```
At the end of the test, the package version that was tested is
......
# SPDX-License-Identifier: GPL-3.0-or-later
# -*- mode: ruby -*-
# vi: set ft=ruby :
#
Vagrant.configure(2) do |config|
config.vm.box = "fedora/30-cloud-base"
config.vm.box = "fedora/32-cloud-base"
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.define "fedora30_knot-dns" do |machine|
config.vm.define "fedora32_knot-dns" do |machine|
machine.vm.provision "ansible" do |ansible|
ansible.playbook = "../knot-dns-pkgtest.yaml"
ansible.extra_vars = {
ansible_python_interpreter: "/usr/bin/python3"
ansible_python_interpreter: "/usr/bin/python3",
}
end
end
......
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