Skip to content

Commit

Permalink
disable incremental in CI to save disk space (#70)
Browse files Browse the repository at this point in the history
* display free disk space

* CARGO_INCREMENTAL: 0

* just /
  • Loading branch information
ctaggart authored Nov 3, 2020
1 parent c4455a2 commit a60aff9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

env:
RUSTFLAGS: -Dwarnings
CARGO_INCREMENTAL: 0

jobs:
test:
Expand All @@ -29,4 +30,8 @@ jobs:
if: matrix.rust == 'stable'

- name: tests
run: cargo test --all
run: cargo test --all

- name: display free disk space
run: df -h /
if: ${{ always() }}

0 comments on commit a60aff9

Please sign in to comment.