Skip to content

Commit

Permalink
Add some environment variables to reduce disk space consumption
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Jul 3, 2024
1 parent 25d2ed8 commit 4d11e2d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:

test:
runs-on: ubuntu-latest
env:
# Disable full debug symbol generation to speed up CI build and keep memory down
RUSTFLAGS: -C debuginfo=none
# Disable incremental builds by cargo for CI which should save disk space
# and hopefully avoid final link "No space left on device"
CARGO_INCREMENTAL: 0
steps:
- uses: actions/checkout@v2
- name: Install minimum stable with clippy and rustfmt
Expand Down

0 comments on commit 4d11e2d

Please sign in to comment.