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

add a command line option to disable the build cache

Summary:
This is useful when working on changes to some of the builder functions,
to skip ever trying to use cached results.

Reviewed By: chadaustin

Differential Revision: D17401219

fbshipit-source-id: fb7d5ea45618653957b9bd6a62eed91d8334824d
This commit is contained in:
Adam Simpkins
2019-09-16 21:07:54 -07:00
committed by Facebook Github Bot
parent 5ded8c5339
commit 95478dccfc

View File

@@ -356,7 +356,7 @@ class BuildCmd(ProjectCmdBase):
print("Building on %s" % loader.ctx_gen.get_context(args.project))
projects = loader.manifests_in_dependency_order()
cache = cache_module.create_cache()
cache = cache_module.create_cache() if args.use_build_cache else None
# Accumulate the install directories so that the build steps
# can find their dep installation
@@ -456,6 +456,13 @@ class BuildCmd(ProjectCmdBase):
"slow up-to-date-ness checks"
),
)
parser.add_argument(
"--no-build-cache",
action="store_false",
default=True,
dest="use_build_cache",
help="Do not attempt to use the build cache.",
)
parser.add_argument(
"--schedule-type", help="Indicates how the build was activated"
)