Merge branch 'remove-eol-12-2023' into 'main'

Remove eol 12 2023

Closes #4 and #5

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