mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-17 13:21:04 +03:00
Summary: This should allow more direct testing of changes without waiting for things to land on github first. As part of this, to avoid a conflict between the deps that bistro downloads and those used by the rest of the fbcode builder CI, I've updated the version of gtest used by bistro. Reviewed By: zertosh Differential Revision: D13802637 fbshipit-source-id: fd71bfabd2a85f4f63c21b44a1e868f2d293180a
21 lines
525 B
Python
21 lines
525 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
import specs.gmock as gmock
|
|
import specs.folly as folly
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
return {
|
|
'depends_on': [folly, gmock],
|
|
'steps': [
|
|
builder.fb_github_cmake_install(
|
|
'rsocket-cpp/rsocket',
|
|
github_org='rsocket'),
|
|
],
|
|
}
|