diff options
author | merge-script <fanquake@gmail.com> | 2024-07-01 17:20:17 +0100 |
---|---|---|
committer | merge-script <fanquake@gmail.com> | 2024-07-01 17:20:17 +0100 |
commit | fe70be537783aeadf9e3f72cad07efd66775285b (patch) | |
tree | 7c400db71c1cfc9a43b6ca23f27181fb5c21f52a | |
parent | 0bd2bd1efb4b88d7f9eb9a1203560d69e07d97c3 (diff) | |
parent | fa6beb8cfcabd58273f15e03f781016ac610e788 (diff) |
Merge bitcoin/bitcoin#30369: ci: Clear unused /msan/llvm-projectshow-current
fa6beb8cfcabd58273f15e03f781016ac610e788 ci: Clear unused /msan/llvm-project (MarcoFalke)
Pull request description:
Could help to fix the `no space left on device` that are sometimes seen.
ACKs for top commit:
theuni:
utACK fa6beb8cfcabd58273f15e03f781016ac610e788
Tree-SHA512: 0bedf4b26eed842c7bfa2caeac4df578cdbb00a658e8d0037b8b7b90150d8a9d1b8140437d1cf40b50d82a9085ea50cf9a010764c4439b2a03a457d399191319
-rwxr-xr-x | ci/test/01_base_install.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ci/test/01_base_install.sh b/ci/test/01_base_install.sh index f16321ba55..bb99fc30e9 100755 --- a/ci/test/01_base_install.sh +++ b/ci/test/01_base_install.sh @@ -65,6 +65,10 @@ if [[ ${USE_MEMORY_SANITIZER} == "true" ]]; then -S /msan/llvm-project/runtimes ninja -C /msan/cxx_build/ "-j$( nproc )" # Use nproc, because MAKEJOBS is the default in docker image builds + + # Clear no longer needed source folder + du -sh /msan/llvm-project + rm -rf /msan/llvm-project fi if [[ "${RUN_TIDY}" == "true" ]]; then |