Skip to content

Commit

Permalink
fix: no space left in the rust-unit-test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Flouse committed Oct 11, 2023
1 parent cf935f6 commit e0bc090
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ jobs:
key: ${{ matrix.os }}-${{ runner.os }}-${{ runner.arch }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}

- name: Run Rust unit-test
run: make test
run: |
make test
du -hd1 target/debug/
echo "reduce the cargo cache size"
rm -rf target/debug/examples
rm -rf target/debug/incremental
du -hd1 target/debug/
other-unit-test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e0bc090

Please sign in to comment.