]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
CI: Don't omit crc32 from the list with CMake anymore
authorLasse Collin <lasse.collin@tukaani.org>
Mon, 24 Jun 2024 14:18:44 +0000 (17:18 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Mon, 24 Jun 2024 15:15:58 +0000 (18:15 +0300)
XZ_CHECKS accepts it but works without too.

build-aux/ci_build.bash

index 2af2b74bf31b44806addc653b275d86a1a5d8d79..ddd6b13a8e10bc4c39c2c941b910f843b3e8e25c 100755 (executable)
@@ -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