Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,12 @@ jobs:
path: packages/*/target/curl-sys
key: curl-sys-${{ matrix.os }}-${{ runner.arch }}${{ matrix.android && '-android' || '' }}

- name: Cache deflate-sys build
uses: actions/cache@v5
with:
path: packages/*/target/deflate-sys
key: deflate-sys-${{ matrix.os }}-${{ runner.arch }}${{ matrix.android && '-android' || '' }}

- name: Build lde
if: "!matrix.android"
run: |
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ jobs:
path: packages/*/target/curl-sys
key: curl-sys-${{ matrix.os }}-${{ runner.arch }}${{ matrix.android && '-android' || '' }}

- name: Cache deflate-sys build
uses: actions/cache@v5
with:
path: packages/*/target/deflate-sys
key: deflate-sys-${{ matrix.os }}-${{ runner.arch }}${{ matrix.android && '-android' || '' }}

- name: Build lde
if: "!matrix.android"
run: |
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@ jobs:
path: packages/*/target/curl-sys
key: curl-sys-${{ matrix.os }}-${{ runner.arch }}${{ matrix.android && '-android' || '' }}

- name: Cache deflate-sys build
uses: actions/cache@v5
with:
path: packages/*/target/deflate-sys
key: deflate-sys-${{ matrix.os }}-${{ runner.arch }}${{ matrix.android && '-android' || '' }}

- name: Build lde
if: "!matrix.android"
run: |
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@ jobs:
path: packages/*/target/curl-sys
key: curl-sys-${{ matrix.os }}-${{ runner.arch }}${{ matrix.android && '-android' || '' }}

- name: Cache deflate-sys build
uses: actions/cache@v5
with:
path: packages/*/target/deflate-sys
key: deflate-sys-${{ matrix.os }}-${{ runner.arch }}${{ matrix.android && '-android' || '' }}

- name: Build lde
# lde's own tests invoke the lde binary directly (e.g. to test CLI flags),
# so we must compile a fresh binary from source before running tests.
Expand Down
5 changes: 2 additions & 3 deletions packages/archive/lde.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
"description": "Archive extraction library. Reads magic bytes to detect zip vs tar.",
"version": "0.1.0",
"dependencies": {
"process2": { "path": "../process2" },
"fs": { "path": "../fs" },
"path": { "path": "../path" }
"path": { "path": "../path" },
"deflate-sys": { "git": "https://github.com/lde-org/deflate-sys" }
},
"devDependencies": {
"lde-test": { "path": "../lde-test" },
"archive": { "path": "../archive" },
"fs": { "path": "../fs" },
"env": { "path": "../env" },
"path": { "path": "../path" }
Expand Down
Loading
Loading