mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-10 05:22:59 +03:00
Summary: Since Bistro is slated to be deprecated, let us turn off OSS CI for it. Reviewed By: AnonymousMonkey2021 Differential Revision: D35347845 fbshipit-source-id: be23bcfaa098f77162f27ecfed6469b8db7d3401
20 lines
520 B
Python
20 lines
520 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
builder.add_option("fmtlib/fmt:git_hash", "6.2.1")
|
|
builder.add_option(
|
|
"fmtlib/fmt:cmake_defines",
|
|
{
|
|
# NB: May no longer be needed since Bistro is gone.
|
|
"BUILD_SHARED_LIBS": "OFF",
|
|
},
|
|
)
|
|
return {
|
|
"steps": [
|
|
builder.github_project_workdir("fmtlib/fmt", "build"),
|
|
builder.cmake_install("fmtlib/fmt"),
|
|
],
|
|
}
|