Skip to content

Commit

Permalink
Removes clang archive after extracting
Browse files Browse the repository at this point in the history
The archive itself is ~1GB in size, and the build runner is running
out of space while building.
  • Loading branch information
claudiubelu committed Aug 5, 2024
1 parent 35e33e0 commit 5d733f7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 1.28.2/rockcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ parts:
wget -q "https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.8/${clang_llvm}.tar.xz"
tar -xf "./${clang_llvm}.tar.xz"
# remove the archive to release some local storage, it's around ~1GB in size.
rm "./${clang_llvm}.tar.xz"
bazel/setup_clang.sh "${clang_llvm}"
export LLVM_ROOT="$PWD/${clang_llvm}"
export PATH=${LLVM_ROOT}/bin:${PATH}
Expand Down

0 comments on commit 5d733f7

Please sign in to comment.