tree-wide: drop f31 support

We no longer release into F31, and the right specfile was anyway not
being tested.

This allows us to remove a workaround that updates the VMs during
deploy, and other fedora-31 specific hacks.
This commit is contained in:
Tom Gundersen 2020-10-19 23:31:05 +00:00 committed by Ondřej Budai
parent 1d7df26775
commit 25abccf66d
23 changed files with 10 additions and 104272 deletions

View file

@ -16,7 +16,6 @@ import (
"github.com/osbuild/osbuild-composer/internal/blueprint"
"github.com/osbuild/osbuild-composer/internal/distro"
"github.com/osbuild/osbuild-composer/internal/distro/fedora31"
"github.com/osbuild/osbuild-composer/internal/distro/fedora32"
"github.com/osbuild/osbuild-composer/internal/distro/fedora33"
"github.com/osbuild/osbuild-composer/internal/rpmmd"
@ -53,7 +52,7 @@ func TestCrossArchDepsolve(t *testing.T) {
repoDir := "/usr/share/osbuild-composer"
// NOTE: we can add RHEL, but don't make it hard requirement because it will fail outside of VPN
for _, distroStruct := range []distro.Distro{fedora31.New(), fedora32.New(), fedora33.New()} {
for _, distroStruct := range []distro.Distro{fedora32.New(), fedora33.New()} {
t.Run(distroStruct.Name(), func(t *testing.T) {
// Run tests in parallel to speed up run times.