mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-19 00:21:58 +03:00
Summary: There is no guarantee that the default branch in git is 'master'; so unless specified we checkout a tag along the 'dev' branch, which is not intended as it is the master branch that tracks releases for Zstd. Reviewed By: jstrizich Differential Revision: D8297843 fbshipit-source-id: 8497dc75c399ae7c86e27b28fdb73898ef4b1a4e
26 lines
773 B
Python
26 lines
773 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
|
|
|
|
from shell_quoting import ShellQuoted
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
# This API should change rarely, so build the latest tag instead of master.
|
|
builder.add_option(
|
|
'facebook/zstd:git_hash',
|
|
ShellQuoted('$(git describe --abbrev=0 --tags origin/master)')
|
|
)
|
|
return {
|
|
'steps': [
|
|
builder.github_project_workdir('facebook/zstd', '.'),
|
|
builder.step('Build and install zstd', [
|
|
builder.make_and_install(make_vars={
|
|
'PREFIX': builder.option('prefix'),
|
|
})
|
|
]),
|
|
],
|
|
}
|