-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
18 lines (17 loc) · 919 Bytes
/
Copy path.gitattributes
File metadata and controls
18 lines (17 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Latest-release artifacts go through Git LFS so the main-branch
# history stays small. The `release.yml` workflow commits the
# tarballs / wheels / .node files / loose binaries into
# `release_artifacts/`, which would otherwise bloat git's pack
# files by hundreds of MB per release. Old versions remain
# accessible via the GitHub Releases page; the repo only carries
# the latest set.
#
# Broad glob: anything starting with `lethe` in `release_artifacts/` is a
# release artifact — tarballs, wheels, and `.node` archives. Single rule covers
# everything.
release_artifacts/lethe* filter=lfs diff=lfs merge=lfs -text
# Treat the Python reference implementation as vendored so GitHub
# language stats reflect the active Rust port. This tree is the
# original Python codebase, kept around for the benchmark harness
# and not part of the shipped product.
research_playground/lethe_reference/** linguist-vendored=true