eden: getdeps: skip building rsocket tests

Summary:
as above; this makes the build faster and makes us
slightly less sensitive to problems with building its tests.

Reviewed By: pkaush

Differential Revision: D14137089

fbshipit-source-id: 7edf4ac4a24bd90db55410363821f30635010627
This commit is contained in:
Wez Furlong 2019-02-19 14:40:36 -08:00 committed by Facebook Github Bot
parent 8847a7a061
commit bdd335b648

View File

@ -282,7 +282,13 @@ def get_projects(opts):
"rsocket-cpp",
opts,
GitUpdater("https://github.com/rsocket/rsocket-cpp.git"),
CMakeBuilder(defines={"BUILD_EXAMPLES": "OFF", "BUILD_BENCHMARKS": "OFF"}),
CMakeBuilder(
defines={
"BUILD_EXAMPLES": "OFF",
"BUILD_BENCHMARKS": "OFF",
"BUILD_TESTS": "OFF",
}
),
),
Project(
"fbthrift",