proxygen
fbcode_builder_config Namespace Reference

Functions

def fbcode_builder_spec (builder)
 

Variables

dictionary config
 

Function Documentation

def fbcode_builder_config.fbcode_builder_spec (   builder)

Definition at line 17 of file fbcode_builder_config.py.

17 def fbcode_builder_spec(builder):
18  return {
19  'depends_on': [folly, wangle, proxygen, fizz, sodium],
20  'steps': [
21  # Proxygen is the last step, so we are still in its working dir.
22  builder.step('Run proxygen tests', [
23  builder.run(ShellQuoted('make check')),
24  ])
25  ],
26  }
27 
28 

Variable Documentation

dictionary fbcode_builder_config.config
Initial value:
1 = {
2  'fbcode_builder_spec': lambda _builder: {
3  'depends_on': [],
4  'steps': [],
5  },
6  'github_project': 'demo/project',
7 }

Definition at line 9 of file fbcode_builder_config.py.