mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
46 lines
1.9 KiB
TOML
46 lines
1.9 KiB
TOML
|
[tool.black]
|
||
|
line-length = 120
|
||
|
target-version = ['py310']
|
||
|
|
||
|
[tool.cibuildwheel]
|
||
|
build = [ # Build CPython wheels on Linux and macOS, for x86 as well as ARM
|
||
|
"cp3*-macosx_x86_64",
|
||
|
"cp3*-macosx_arm64",
|
||
|
"cp3*-manylinux_x86_64",
|
||
|
"cp3*-manylinux_aarch64",
|
||
|
]
|
||
|
build-frontend = "build" # This is successor to building with pip
|
||
|
|
||
|
[tool.cibuildwheel.macos]
|
||
|
archs = [ # We could also build a universal wheel, but separate ones are lighter individually
|
||
|
"x86_64",
|
||
|
"arm64",
|
||
|
]
|
||
|
before-build = [ # We need to install the libraries for each architecture separately
|
||
|
"brew uninstall --force boost antlr4-cpp-runtime",
|
||
|
"brew fetch --force --bottle-tag=${ARCHFLAGS##'-arch '}_monterey boost antlr4-cpp-runtime",
|
||
|
"brew install $(brew --cache --bottle-tag=${ARCHFLAGS##'-arch '}_monterey boost antlr4-cpp-runtime)",
|
||
|
]
|
||
|
|
||
|
[tool.cibuildwheel.linux]
|
||
|
before-all = [
|
||
|
# manylinux_2_28 is based on AlmaLinux 8, which uses Fedora's dnf as its package manager
|
||
|
"dnf install -y boost-devel unzip cmake curl uuid pkg-config",
|
||
|
"curl https://www.antlr.org/download/antlr4-cpp-runtime-4.13.0-source.zip --output antlr4-source.zip",
|
||
|
# Check that the downloaded archive is the expected runtime - a security measure
|
||
|
"anltr_known_md5sum=\"ff214b65fb02e150b4f515d7983bca92\"",
|
||
|
"antlr_found_ms5sum=\"$(md5sum antlr4-source.zip | cut -d' ' -f1)\"",
|
||
|
'if [[ "$anltr_known_md5sum" != "$antlr_found_ms5sum" ]]; then exit 64; fi',
|
||
|
"unzip antlr4-source.zip -d antlr4-source && cd antlr4-source",
|
||
|
"cmake .",
|
||
|
"DESTDIR=out make install",
|
||
|
"cp -r out/usr/local/include/antlr4-runtime /usr/include/",
|
||
|
"cp out/usr/local/lib64/libantlr4-runtime.so* /usr/lib64/",
|
||
|
"ldconfig",
|
||
|
]
|
||
|
archs = [
|
||
|
"native", # We run x86_64 and aarch64 as separate CI jobs, and we want native in each case as emulation is slow
|
||
|
]
|
||
|
manylinux-x86_64-image = "manylinux_2_28"
|
||
|
manylinux-aarch64-image = "manylinux_2_28"
|