CI: Don't omit crc32 from the list with CMake anymore

XZ_CHECKS accepts it but works without too.
This commit is contained in:
Lasse Collin 2024-06-24 17:18:44 +03:00
parent 1bf83cded2
commit 3faf4e8079
1 changed files with 1 additions and 9 deletions

View File

@ -166,15 +166,7 @@ then
CHECK_TYPE_TEMP=""
for crc in $(echo "$CHECK_TYPE" | sed "s/,/ /g"); do
case "$crc" in
# Remove "crc32" from cmake build, if specified.
crc32)
if [ "$BUILD_SYSTEM" = "cmake" ]
then
continue
fi
;;
crc64) ;;
sha256) ;;
crc32 | crc64 | sha256) ;;
*) echo "Invalid check type: $crc"; exit 1 ;;
esac