Skip to content

Commit

Permalink
chore: disable incremental builds in CI for saving space
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Jul 19, 2023
1 parent a7389d5 commit dba2e50
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ jobs:
# Disable full debug symbol generation to speed up CI build and keep memory down
# "1" means line tables only, which is useful for panic tracebacks.
RUSTFLAGS: -C debuginfo=1
# 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@v3
Expand Down

0 comments on commit dba2e50

Please sign in to comment.