Skip to content

Commit

Permalink
build: Add Fedora Core 39/40 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
hessu committed Jun 5, 2024
1 parent 8794ead commit 51f9dd7
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions build/build-all.pl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
'debian-110-amd64',
'debian-120-amd64',
'centos-70-x86_64',
'fedora-39-x86_64',
'fedora-40-x86_64',
);

my %platconf = (
Expand All @@ -27,11 +29,13 @@
'centos-70-x86_64' => {
'dest' => 'centos/7/x86_64'
},
'centos-63-i686' => {
'dest' => 'centos/6/i386'
'fedora-39-x86_64' => {
'virtualisation' => 'lxd',
'dest' => 'fedora/39/x86_64'
},
'centos-63-x86_64' => {
'dest' => 'centos/6/x86_64'
'fedora-40-x86_64' => {
'virtualisation' => 'lxd',
'dest' => 'fedora/40/x86_64'
},
'ubuntu-1804-amd64' => {
'virtualisation' => 'lxd'
Expand Down Expand Up @@ -295,7 +299,7 @@ ($$)
print "Building $plat on $vm:\n";

vm_up($plat, $vm);
if ($plat =~ /centos/) {
if ($plat =~ /(centos|fedora)/) {
vm_build_rpm($vm, $plat, $tgz);
} else {
vm_build($vm, $plat, $tgz);
Expand Down

0 comments on commit 51f9dd7

Please sign in to comment.