mirror of
https://github.com/facebook/proxygen.git
synced 2025-09-02 16:21:15 +03:00
Summary: in the opensource spec I forgot to specify the github org as facebookincubator in D9337956 vs regular facebook, this caused travis builds for proxygen and anything that depends on fizz to fail Reviewed By: knekritz Differential Revision: D9482739 fbshipit-source-id: ba5a8f465c81ec1b9f037114ce1da3614a838699
21 lines
497 B
Python
21 lines
497 B
Python
#!/usr/bin/env python
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
import specs.folly as folly
|
|
import specs.sodium as sodium
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
return {
|
|
'depends_on': [folly, sodium],
|
|
'steps': [
|
|
builder.fb_github_cmake_install(
|
|
'fizz/fizz/build',
|
|
github_org='facebookincubator',
|
|
),
|
|
],
|
|
}
|