Skip to content

Commit fd80983

Browse files
committed
add support for ubuntu 24.04
1 parent 9515bc3 commit fd80983

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

.github/workflows/_artifacts_linux.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,15 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
distro: [ alpine.3.17, alpine.3.18, centos.stream.8, debian.11, fedora.37, ubuntu.20.04, ubuntu.22.04 ]
22+
distro:
23+
- alpine.3.17
24+
- alpine.3.18
25+
- centos.stream.8
26+
- debian.11
27+
- fedora.37
28+
- ubuntu.20.04
29+
- ubuntu.22.04
30+
- ubuntu.24.04
2331
targetFramework: [ '6.0', '7.0', '8.0' ]
2432

2533
steps:

.github/workflows/_docker.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,15 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
distro: [ alpine.3.17, alpine.3.18, centos.stream.8, debian.11, fedora.37, ubuntu.20.04, ubuntu.22.04 ]
22+
distro:
23+
- alpine.3.17
24+
- alpine.3.18
25+
- centos.stream.8
26+
- debian.11
27+
- fedora.37
28+
- ubuntu.20.04
29+
- ubuntu.22.04
30+
- ubuntu.24.04
2331
targetFramework: [ '6.0', '7.0', '8.0' ]
2432

2533
steps:

.github/workflows/_docker_manifests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,15 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
distro: [ alpine.3.17, alpine.3.18, centos.stream.8, debian.11, fedora.37, ubuntu.20.04, ubuntu.22.04 ]
15+
distro:
16+
- alpine.3.17
17+
- alpine.3.18
18+
- centos.stream.8
19+
- debian.11
20+
- fedora.37
21+
- ubuntu.20.04
22+
- ubuntu.22.04
23+
- ubuntu.24.04
1624
targetFramework: [ '6.0', '7.0', '8.0' ]
1725

1826
steps:

build/common/Utilities/Constants.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ public class Constants
4040
public const string Fedora37 = "fedora.37";
4141
public const string Ubuntu2004 = "ubuntu.20.04";
4242
public const string Ubuntu2204 = "ubuntu.22.04";
43+
public const string Ubuntu2404 = "ubuntu.24.04";
4344
public const string DockerDistroLatest = Debian11;
4445
public const string DebianLatest = Debian11;
45-
public const string UbuntuLatest = Ubuntu2204;
46+
public const string UbuntuLatest = Ubuntu2404;
4647
public const string AlpineLatest = Alpine318;
4748

4849
public static readonly string[] DockerDistrosToBuild =
@@ -53,7 +54,8 @@ public class Constants
5354
Debian11,
5455
Fedora37,
5556
Ubuntu2004,
56-
Ubuntu2204
57+
Ubuntu2204,
58+
Ubuntu2404
5759
];
5860
public const string NugetOrgUrl = "https://api.nuget.org/v3/index.json";
5961
public const string GithubPackagesUrl = "https://nuget.pkg.github.com/gittools/index.json";

0 commit comments

Comments
 (0)