From bdd335b648fe40cdb92d61dc462ac0ff416c4f56 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Tue, 19 Feb 2019 14:40:36 -0800 Subject: [PATCH] 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 --- getdeps.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/getdeps.py b/getdeps.py index 89ca35e3d3..88091adf3e 100755 --- a/getdeps.py +++ b/getdeps.py @@ -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",