Remove stale git-LFS compiler pointer files from bin/compiler - #141
Merged
Conversation
Sensitive Files Detected📎 Prebuilt binary — Changes a prebuilt binary — requires verification of provenance. This is an automated notice. A maintainer will review after import. |
📊 PR Size: size/XSTotal changes: 6 lines (2 files) Top files changed:
Size calculated as additions + deletions. Labels: XS (<10), S (<50), M (<250), L (<1000), XL (1000+) |
afan-sc
approved these changes
Aug 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Removes two orphaned git-LFS pointer files:
bin/compiler/macos/valdi_compilerbin/compiler/linux/valdi_compilerWhy
These are stale git-LFS pointer files left over from before the LFS→GCS-archive migration. They are 133-byte stubs referencing large LFS objects (~49 MB / ~64 MB), and:
bin/**in.gitattributes, so these are orphaned pointers.use_local_compiler=Truein the export transform), so these binaries are not used.bin/compiler/**is inREPO_EXCLUDES, which feeds the workflow'sdestination_files, so copybara treats those paths as out-of-scope and never deletes them.Note
This removes the pointer files from
main. The underlying LFS objects remain in LFS storage/history until separately garbage-collected (needs a history operation / GitHub support) — out of scope for this PR.