Skip to content

Commit

Permalink
fix(test): Update llvm installation script (#287)
Browse files Browse the repository at this point in the history
Previously, the llvm script validated a specific checksum of the llvm
file, which changes frequently.

Signed-off-by: Crash <[email protected]>

Co-authored-by: guillex <[email protected]>
  • Loading branch information
ralcolea and lgsilva3087 authored Jan 22, 2025
1 parent 93aa1fd commit 4ca33cc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/setup_machine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,14 @@ case "${release}" in
LinuxMint/*|Ubuntu/*|Debian/*)
# Setup latest clang/llvm
wget https://apt.llvm.org/llvm.sh
echo "3080a6f961db6559698ea7692f0d5efa5ad9fde9ac6cf0758cfab134509b5bd6 llvm.sh" | sha256sum --check --status
chmod +x ./llvm.sh
./llvm.sh 19

if [ $? -ne 0 ]; then
echo "Error: Failed to install Clang 19 using llvm.sh script."
exit 1
fi

rm llvm.sh
;;
*)
Expand Down

0 comments on commit 4ca33cc

Please sign in to comment.