Skip to content

Commit 0e7a20f

Browse files
authored
Merge pull request #600 from choffee/main
Add support for Ubuntu 24.04
2 parents 9255a97 + c1e0299 commit 0e7a20f

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ jobs:
1717
secrets: "inherit"
1818
with:
1919
runs_on: "ubuntu-20.04"
20-
flags: "--exclude-platforms '[\"Ubuntu-22.04-arm\", \"RedHat-9-arm\", \"Debian-12-arm\"]'"
21-
20+
flags: "--exclude-platforms '[\"Ubuntu-24.04-arm\", \"Ubuntu-22.04-arm\", \"RedHat-9-arm\", \"Debian-12-arm\"]'"

.github/workflows/nightly.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ jobs:
1616
secrets: "inherit"
1717
with:
1818
runs_on: "ubuntu-20.04"
19-
flags: "--exclude-platforms '[\"Ubuntu-22.04-arm\", \"RedHat-9-arm\", \"Debian-12-arm\"]'"
20-
19+
flags: "--exclude-platforms '[\"Ubuntu-24.04-arm\", \"Ubuntu-22.04-arm\", \"RedHat-9-arm\", \"Debian-12-arm\"]'"

manifests/params.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
default => $facts['os']['architecture']
5959
}
6060
case $facts['os']['release']['major'] {
61-
'12': {
61+
'12', '24.04': {
6262
$openjdk = 17
6363
}
6464
'10', '11', '18.04', '18.10', '19.04', '19.10', '20.04', '22.04': {

metadata.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@
5252
"operatingsystemrelease": [
5353
"18.04",
5454
"20.04",
55-
"22.04"
55+
"22.04",
56+
"24.04"
5657
]
5758
},
5859
{

0 commit comments

Comments
 (0)