sapling/build/fbcode_builder
Jun Wu 9579fc67be edenapi: remove tools
Summary:
`hg debugapi` now provides easier ways to test edenapi endpoints.
Remove the `edenapi/tools` to reduce code bloat. This also unblocks removing
`To/FromJson` complexity so adding new endpoints become easier.

Reviewed By: yancouto

Differential Revision: D31465796

fbshipit-source-id: fdc0a47b4302c876e78455101068f27949d1b645
2021-10-13 15:21:28 -07:00
..
CMake adding copyright header 2021-08-02 05:55:58 -07:00
getdeps upgrade to VC++ 2019 2021-09-28 08:11:54 -07:00
manifests edenapi: remove tools 2021-10-13 15:21:28 -07:00
specs Daily arc lint --take BLACK 2021-07-12 04:14:44 -07:00
.gitignore add fbcode_builder sources 2019-04-26 11:31:58 -07:00
docker_build_with_ccache.sh add fbcode_builder sources 2019-04-26 11:31:58 -07:00
docker_builder.py Opt in opensource/fbcode_builder to pyfmt 2021-07-09 06:24:16 -07:00
docker_enable_ipv6.sh add fbcode_builder sources 2019-04-26 11:31:58 -07:00
fbcode_builder_config.py Opt in opensource/fbcode_builder to pyfmt 2021-07-09 06:24:16 -07:00
fbcode_builder.py Opt in opensource/fbcode_builder to pyfmt 2021-07-09 06:24:16 -07:00
getdeps.py add support to custom main branch name 2021-09-02 12:43:31 -07:00
LICENSE Relicense getdeps from BSD to MIT 2019-10-10 13:20:05 -07:00
make_docker_context.py Opt in opensource/fbcode_builder to pyfmt 2021-07-09 06:24:16 -07:00
parse_args.py Opt in opensource/fbcode_builder to pyfmt 2021-07-09 06:24:16 -07:00
README.docker add fbcode_builder sources 2019-04-26 11:31:58 -07:00
README.md update fbcode_builder README to document getdeps.py 2020-09-09 15:40:21 -07:00
shell_builder.py Opt in opensource/fbcode_builder to pyfmt 2021-07-09 06:24:16 -07:00
shell_quoting.py Opt in opensource/fbcode_builder to pyfmt 2021-07-09 06:24:16 -07:00
travis_docker_build.sh Make travis_docker_build.sh macos-compatible 2021-07-08 09:46:14 -07:00
utils.py Opt in opensource/fbcode_builder to pyfmt 2021-07-09 06:24:16 -07:00

Easy builds for Facebook projects

This directory contains tools designed to simplify continuous-integration (and other builds) of Facebook open source projects. In particular, this helps manage builds for cross-project dependencies.

The main entry point is the getdeps.py script. This script has several subcommands, but the most notable is the build command. This will download and build all dependencies for a project, and then build the project itself.

Deployment

This directory is copied literally into a number of different Facebook open source repositories. Any change made to code in this directory will be automatically be replicated by our open source tooling into all GitHub hosted repositories that use fbcode_builder. Typically this directory is copied into the open source repositories as build/fbcode_builder/.

Project Configuration Files

The manifests subdirectory contains configuration files for many different projects, describing how to build each project. These files also list dependencies between projects, enabling getdeps.py to build all dependencies for a project before building the project itself.

Shared CMake utilities

Since this directory is copied into many Facebook open source repositories, it is also used to help share some CMake utility files across projects. The CMake/ subdirectory contains a number of .cmake files that are shared by the CMake-based build systems across several different projects.

Older Build Scripts

This directory also still contains a handful of older build scripts that pre-date the current getdeps.py build system. Most of the other .py files in this top directory, apart from getdeps.py itself, are from this older build system. This older system is only used by a few remaining projects, and new projects should generally use the newer getdeps.py script, by adding a new configuration file in the manifests/ subdirectory.