Skip to content

Commit 36e84d0

Browse files
committed
Avoid 'No space left on device' errors in CI
1 parent f04b7f5 commit 36e84d0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ jobs:
126126
GRCOV_IGNORE_OPTION: '--ignore build.rs --ignore "/*" --ignore "[a-zA-Z]:/*"'
127127
GRCOV_EXCLUDE_OPTION: '--excl-br-line "^\s*((debug_)?assert(_eq|_ne)?!|#\[derive\()"'
128128
NOTEST_CUDA_COMPILERS: ${{ matrix.notest_cuda_compilers || '' }}
129+
CARGO_PROFILE_DEV_DEBUG: '0' # save disk space
129130
steps:
130131
- uses: ilammy/msvc-dev-cmd@v1
131132

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ name = "sccache"
1818
name = "sccache-dist"
1919
required-features = ["dist-server"]
2020

21+
[profile.test]
22+
debug = false # save disk space
23+
2124
[profile.release]
2225
codegen-units = 1
2326
lto = true

0 commit comments

Comments
 (0)