Edit CI and docs to reflect generated archives not needing LFS #1365
+51
−58
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.
Since 35439de (#1176), and as mentioned in #1334 (review) and #1360 (review), generated archives that formerly required Git LFS are now included in full as ordinary blobs in the
gitoxide
repository. Therefore:ubuntu-latest
still gives the old reason related to Git LFS.The changes in this pull request address both those points.
LFS handling in
tests/tools/src/lib.rs
is intentionally retained, since there is no reason to remove LFS capabilities from the test tools (this could be revisited in the future if it is found to impose a significant maintenance burden) and LFS might potentially be used again in the future. Unlike in documentation and CI workflows, LFS capabilities in the test tools do not make working with the project any more complicated and do not make anything take longer.I have also not made a change in
.gitattributes
. I'm unsure if any changes is needed or warranted there. The relevant line is:https://github.com/Byron/gitoxide/blob/e791bc5da52a1237fb7cac230af583199162825d/.gitattributes#L1
I have permitted my editor to remove trailing whitespace, in files that I was editing anyway, since in all cases it appeared unintended. This deliberately does not remove trailing whitespace in files that would otherwise be untouched, nor does it do any other kind of cleanup.