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

regenerate github actions

Summary: Fix the getdeps.py  generation sub command and regenerate github actions before making changes to support actions generation for eden_scm

Reviewed By: fanzeyi

Differential Revision: D34044243

fbshipit-source-id: 0039d04f25af4c842145dc142dae6b9996fc8046
This commit is contained in:
Alex Hornby
2022-02-08 02:59:56 -08:00
committed by Facebook GitHub Bot
parent d4f96c8354
commit e6c0e7ddc9
3 changed files with 9 additions and 9 deletions

View File

@@ -41,8 +41,6 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests lz4
- name: Fetch snappy
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests snappy
- name: Fetch folly
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests folly
- name: Fetch autoconf
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests autoconf
- name: Fetch automake
@@ -53,6 +51,8 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests gperf
- name: Fetch libsodium
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libsodium
- name: Fetch folly
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests folly
- name: Fetch fizz
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests fizz
- name: Fetch mvfst
@@ -85,8 +85,6 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py build --no-tests lz4
- name: Build snappy
run: python3 build/fbcode_builder/getdeps.py build --no-tests snappy
- name: Build folly
run: python3 build/fbcode_builder/getdeps.py build --no-tests folly
- name: Build autoconf
run: python3 build/fbcode_builder/getdeps.py build --no-tests autoconf
- name: Build automake
@@ -97,6 +95,8 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py build --no-tests gperf
- name: Build libsodium
run: python3 build/fbcode_builder/getdeps.py build --no-tests libsodium
- name: Build folly
run: python3 build/fbcode_builder/getdeps.py build --no-tests folly
- name: Build fizz
run: python3 build/fbcode_builder/getdeps.py build --no-tests fizz
- name: Build mvfst

View File

@@ -43,8 +43,6 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests snappy
- name: Fetch libevent
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libevent
- name: Fetch folly
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests folly
- name: Fetch autoconf
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests autoconf
- name: Fetch automake
@@ -55,6 +53,8 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests gperf
- name: Fetch libsodium
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests libsodium
- name: Fetch folly
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests folly
- name: Fetch fizz
run: python3 build/fbcode_builder/getdeps.py fetch --no-tests fizz
- name: Fetch mvfst
@@ -89,8 +89,6 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py build --no-tests snappy
- name: Build libevent
run: python3 build/fbcode_builder/getdeps.py build --no-tests libevent
- name: Build folly
run: python3 build/fbcode_builder/getdeps.py build --no-tests folly
- name: Build autoconf
run: python3 build/fbcode_builder/getdeps.py build --no-tests autoconf
- name: Build automake
@@ -101,6 +99,8 @@ jobs:
run: python3 build/fbcode_builder/getdeps.py build --no-tests gperf
- name: Build libsodium
run: python3 build/fbcode_builder/getdeps.py build --no-tests libsodium
- name: Build folly
run: python3 build/fbcode_builder/getdeps.py build --no-tests folly
- name: Build fizz
run: python3 build/fbcode_builder/getdeps.py build --no-tests fizz
- name: Build mvfst

View File

@@ -877,7 +877,7 @@ class GenerateGitHubActionsCmd(ProjectCmdBase):
# TODO: Break up complex function
def write_job_for_platform(self, platform, args): # noqa: C901
build_opts = setup_build_options(args, platform)
ctx_gen = build_opts.get_context_generator(facebook_internal=False)
ctx_gen = build_opts.get_context_generator()
loader = ManifestLoader(build_opts, ctx_gen)
manifest = loader.load_manifest(args.project)
manifest_ctx = loader.ctx_gen.get_context(manifest.name)