Skip to content

Commit 97ff7b0

Browse files
yfeldblumfacebook-github-bot
authored andcommitted
bump repo ci to ubuntu-22.04
Summary: X-link: facebook/folly#2189 X-link: facebookincubator/zstrong#782 Now that Ubuntu 24.04 LTS [has been released](https://ubuntu.com/blog/canonical-releases-ubuntu-24-04-noble-numbat), it is a suitable time to bump the version of Ubuntu used in CI to Ubuntu 22.04 LTS, which is the prior LTS. Ubuntu 22.04 LTS ships with GCC 11.2, and is the first Ubuntu release to ship with a version of GCC that implements C++20 coroutines. Reviewed By: chadaustin Differential Revision: D57017204 fbshipit-source-id: ce5754e7dfc6cb066739bf164e725de8e21f8d24
1 parent d07f7cc commit 97ff7b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/getdeps_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
build:
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-22.04
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Fetch ninja

build/fbcode_builder/getdeps.py

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

932932
def run_project_cmd(self, args, loader, manifest):
933933
platforms = [
934-
HostType("linux", "ubuntu", "18"),
934+
HostType("linux", "ubuntu", "22"),
935935
HostType("darwin", None, None),
936936
HostType("windows", None, None),
937937
]
@@ -1216,7 +1216,7 @@ def setup_project_cmd_parser(self, parser):
12161216
help="Allow CI to fire on all branches - Handy for testing",
12171217
)
12181218
parser.add_argument(
1219-
"--ubuntu-version", default="20.04", help="Version of Ubuntu to use"
1219+
"--ubuntu-version", default="22.04", help="Version of Ubuntu to use"
12201220
)
12211221
parser.add_argument(
12221222
"--cron",

0 commit comments

Comments
 (0)