sapling/build/fbcode_builder
Mack Ward 68294ed7d2 Upgrade zlib to 1.3
Summary:
X-link: https://github.com/facebookincubator/velox/pull/6169

As of today, zlib 1.2.13 is no more:

```
$ with-proxy wget https://zlib.net/zlib-1.2.13.tar.gz
--2023-08-18 18:01:43--  https://zlib.net/zlib-1.2.13.tar.gz
Resolving fwdproxy (fwdproxy)... 2401:db00:12ff:ff13:face:b00c:0:1e10
Connecting to fwdproxy (fwdproxy)|2401:db00:12ff:ff13:face:b00c:0:1e10|:8080... connected.
Proxy request sent, awaiting response... 404 Not Found
2023-08-18 18:01:43 ERROR 404: Not Found.
```

It's causing CI failures: https://www.internalfb.com/intern/sandcastle/job/36028798043461030

This diff updates to the latest version to fix the errors.

As of today, zlib 1.13 is the new hotness: https://zlib.net/

{F1072264715}

Reviewed By: ASchneidman

Differential Revision: D48490699

fbshipit-source-id: 333cef334f9ae89938b3fe3d046804477ff4cfe2
2023-08-18 20:13:40 -07:00
..
CMake Fix typos discovered by codespell 2023-07-26 17:10:41 -07:00
getdeps Modernize name of Cargo configuration files (.cargo/config -> .cargo/config.toml) 2023-08-15 07:07:44 -07:00
manifests Upgrade zlib to 1.3 2023-08-18 20:13:40 -07:00
patches fix blake3 build on MSVC (#4447) 2023-04-03 14:43:56 -07:00
.gitignore add fbcode_builder sources 2019-04-26 11:31:58 -07:00
getdeps.py Fix typos discovered by codespell 2023-07-26 17:10:41 -07:00
LICENSE Relicense getdeps from BSD to MIT 2019-10-10 13:20:05 -07:00
README.md update fbcode_builder README to document getdeps.py 2020-09-09 15:40:21 -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.