Skip to content

Commit 9a2ce43

Browse files
committed
add support for git-lfs to support archives (#16)
This greatly speeds up the usage of generated index repositories as these are only extracted, not build with tons of git invocations.
1 parent d28591b commit 9a2ce43

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
**/generated-archives/*.tar.xz filter=lfs diff=lfs merge=lfs -text
2+
3+
# assure line feeds don't interfere with our working copy hash
4+
**/tests/fixtures/*.sh text crlf=input eol=lf
5+

.github/workflows/rust.yml renamed to .github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14+
- uses: Swatinem/rust-cache@v2
15+
- run: git lfs fetch && git lfs checkout
1416
- name: tests
1517
run: make test
1618
- name: docs

0 commit comments

Comments
 (0)