Remove eol 12 2023

This commit is contained in:
Greg Hellings
2024-01-02 07:48:27 +00:00
parent 856b9ade04
commit 5309b6cb93
4 changed files with 7 additions and 4 deletions
+1
View File
@@ -31,6 +31,7 @@ stages:
- ${tag} - ${tag}
variables: &variables variables: &variables
PACKER_CONFIG_DIR: ./packer_config/ PACKER_CONFIG_DIR: ./packer_config/
PACKER_CACHE_DIR: ./packer_cache/
PACKER_LOG: 0 PACKER_LOG: 0
COMMAND: > COMMAND: >
packer build ${only} packer build ${only}
+2 -2
View File
@@ -1,4 +1,5 @@
37: &supp 37: # EOL
38: &supp
- arch: amd64 - arch: amd64
provider: qemu provider: qemu
- arch: amd64 - arch: amd64
@@ -7,7 +8,6 @@
provider: vmware-iso provider: vmware-iso
- arch: amd64 - arch: amd64
provider: hyperv-iso provider: hyperv-iso
38: *supp
39: *supp 39: *supp
rawhide: rawhide:
- arch: amd64 - arch: amd64
+2 -2
View File
@@ -1,4 +1,5 @@
23.05: &supp 23.05: # EOL
23.11: &supp
- arch: amd64 - arch: amd64
provider: qemu provider: qemu
- arch: amd64 - arch: amd64
@@ -7,4 +8,3 @@
provider: vmware-iso provider: vmware-iso
- arch: amd64 - arch: amd64
provider: hyperv-iso provider: hyperv-iso
23.11: *supp
+2
View File
@@ -7,6 +7,8 @@ class Distro:
self.name = name self.name = name
self.builds = [] self.builds = []
for version, matrix in support.items(): for version, matrix in support.items():
if not matrix:
continue
for support in matrix: for support in matrix:
provider = Provider(support["provider"], support["arch"]) provider = Provider(support["provider"], support["arch"])
build = Build(self.name, version, provider) build = Build(self.name, version, provider)