remove Fedora 35 support
Fedora 35 is going EOL on Tue 2022-12-13. At the time of writing this commit message, that's the next day. As we do releases on Wednesdays, the next release will never find its way to F35 and thus, there's no point in keeping support for it. Let's delete everything that relates to Fedora 35. If there's something that cannot be deleted (e.g. CI containers based on F35), let's upgrade it to F37. TestCrossArchDepsolve now uses CentOS Stream 8 because RHEL 8.4 cannot read F37 repository metadata. This is a similar issue to https://bugzilla.redhat.com/show_bug.cgi?id=2004853 . Basically, newer repositories can be only read by libmodulemd >= 2.11. Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
parent
8c4689f082
commit
4bafe1ead9
48 changed files with 32 additions and 490624 deletions
|
|
@ -10,6 +10,9 @@ import (
|
|||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/osbuild/osbuild-composer/internal/blueprint"
|
||||
"github.com/osbuild/osbuild-composer/internal/common"
|
||||
"github.com/osbuild/osbuild-composer/internal/distro"
|
||||
|
|
@ -18,8 +21,6 @@ import (
|
|||
"github.com/osbuild/osbuild-composer/internal/distroregistry"
|
||||
"github.com/osbuild/osbuild-composer/internal/rpmmd"
|
||||
"github.com/osbuild/osbuild-composer/internal/target"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
// MustParseTime parses a time string and panics if there is an error
|
||||
|
|
@ -307,8 +308,8 @@ func Test_upgrade(t *testing.T) {
|
|||
assert.NoErrorf(err, "Could not read test-store '%s': %v", fileName, err)
|
||||
err = json.Unmarshal([]byte(file), &storeStruct)
|
||||
assert.NoErrorf(err, "Could not parse test-store '%s': %v", fileName, err)
|
||||
f35 := fedora.NewF35()
|
||||
registry, err := distroregistry.New(f35, f35)
|
||||
f37 := fedora.NewF37()
|
||||
registry, err := distroregistry.New(f37, f37)
|
||||
assert.NoError(err)
|
||||
|
||||
// The test data has image types only supported on Fedora X86_64
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue