Skip to content

Commit

Permalink
Remove sources before building dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mscuttari committed Nov 5, 2024
1 parent 703fa24 commit 6f7b4ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .jenkins/install_llvm.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash

rm -rf llvm-project
git clone https://github.com/marco-compiler/llvm-project.git
cd llvm-project
cd llvm-project || exit 1
git checkout ${LLVM_COMMIT}

rm -rf build
mkdir build

cmake \
Expand Down

0 comments on commit 6f7b4ba

Please sign in to comment.