Skip to content

Commit 03474e6

Browse files
r-barnesmeta-codesync[bot]
authored andcommitted
Upgrade default GitHub Actions Linux runner to Ubuntu 24.04
Summary: Ubuntu 22.04 is approaching EOL and lacks recent compiler packages (e.g., clang-19) in its default repos. Ubuntu 24.04 has broader package availability for modern toolchains. Reviewed By: bigfootjon, chadaustin Differential Revision: D96788093 fbshipit-source-id: 01b21a0ff8f0088f5cf49a0e974f1afd5d61edf0
1 parent ce24df5 commit 03474e6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build/fbcode_builder/getdeps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1011,7 +1011,7 @@ class GenerateGitHubActionsCmd(ProjectCmdBase):
10111011

10121012
def run_project_cmd(self, args, loader, manifest):
10131013
platforms = [
1014-
HostType("linux", "ubuntu", "22"),
1014+
HostType("linux", "ubuntu", "24"),
10151015
HostType("darwin", None, None),
10161016
HostType("windows", None, None),
10171017
]
@@ -1402,7 +1402,7 @@ def setup_project_cmd_parser(self, parser):
14021402
help="Allow CI to fire on all branches - Handy for testing",
14031403
)
14041404
parser.add_argument(
1405-
"--ubuntu-version", default="22.04", help="Version of Ubuntu to use"
1405+
"--ubuntu-version", default="24.04", help="Version of Ubuntu to use"
14061406
)
14071407
parser.add_argument(
14081408
"--cpu-cores",

0 commit comments

Comments
 (0)