proxygen
specs.zstd Namespace Reference

Functions

def fbcode_builder_spec (builder)
 

Function Documentation

def specs.zstd.fbcode_builder_spec (   builder)

Definition at line 11 of file zstd.py.

11 def fbcode_builder_spec(builder):
12  # This API should change rarely, so build the latest tag instead of master.
13  builder.add_option(
14  'facebook/zstd:git_hash',
15  ShellQuoted('$(git describe --abbrev=0 --tags origin/master)')
16  )
17  return {
18  'steps': [
19  builder.github_project_workdir('facebook/zstd', '.'),
20  builder.step('Build and install zstd', [
21  builder.make_and_install(make_vars={
22  'PREFIX': builder.option('prefix'),
23  })
24  ]),
25  ],
26  }
27 
def fbcode_builder_spec(builder)
Definition: zstd.py:11