mirror of https://git.tukaani.org/xz.git
CI: Don't omit crc32 from the list with CMake anymore
XZ_CHECKS accepts it but works without too.
This commit is contained in:
parent
1bf83cded2
commit
3faf4e8079
|
@ -166,15 +166,7 @@ then
|
||||||
CHECK_TYPE_TEMP=""
|
CHECK_TYPE_TEMP=""
|
||||||
for crc in $(echo "$CHECK_TYPE" | sed "s/,/ /g"); do
|
for crc in $(echo "$CHECK_TYPE" | sed "s/,/ /g"); do
|
||||||
case "$crc" in
|
case "$crc" in
|
||||||
# Remove "crc32" from cmake build, if specified.
|
crc32 | crc64 | sha256) ;;
|
||||||
crc32)
|
|
||||||
if [ "$BUILD_SYSTEM" = "cmake" ]
|
|
||||||
then
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
crc64) ;;
|
|
||||||
sha256) ;;
|
|
||||||
*) echo "Invalid check type: $crc"; exit 1 ;;
|
*) echo "Invalid check type: $crc"; exit 1 ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue