1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-08 18:02:05 +03:00

bump repo ci to ubuntu-22.04

Summary:
X-link: https://github.com/facebook/folly/pull/2189

X-link: https://github.com/facebookincubator/zstrong/pull/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
This commit is contained in:
Yedidya Feldblum
2024-05-07 09:51:01 -07:00
committed by Facebook GitHub Bot
parent d07f7cc516
commit 97ff7b02d5
2 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ permissions:
jobs: jobs:
build: build:
runs-on: ubuntu-20.04 runs-on: ubuntu-22.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Fetch ninja - name: Fetch ninja

View File

@@ -931,7 +931,7 @@ class GenerateGitHubActionsCmd(ProjectCmdBase):
def run_project_cmd(self, args, loader, manifest): def run_project_cmd(self, args, loader, manifest):
platforms = [ platforms = [
HostType("linux", "ubuntu", "18"), HostType("linux", "ubuntu", "22"),
HostType("darwin", None, None), HostType("darwin", None, None),
HostType("windows", None, None), HostType("windows", None, None),
] ]
@@ -1216,7 +1216,7 @@ jobs:
help="Allow CI to fire on all branches - Handy for testing", help="Allow CI to fire on all branches - Handy for testing",
) )
parser.add_argument( parser.add_argument(
"--ubuntu-version", default="20.04", help="Version of Ubuntu to use" "--ubuntu-version", default="22.04", help="Version of Ubuntu to use"
) )
parser.add_argument( parser.add_argument(
"--cron", "--cron",