mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-14 04:13:02 +00:00
10 lines
215 B
Bash
10 lines
215 B
Bash
#!/bin/sh
|
|
# Checks llvm build passing on architectiures known to have 100% tests workings
|
|
|
|
if grep -q "Unexpected Failure" check-llvm_build_log.txt; then
|
|
exit 1
|
|
else
|
|
echo "build OK"
|
|
fi
|
|
rm check-llvm_build_log.txt
|