Skip to content

Commit

Permalink
CI: Don't omit crc32 from the list with CMake anymore
Browse files Browse the repository at this point in the history
XZ_CHECKS accepts it but works without too.
  • Loading branch information
Larhzu committed Jun 24, 2024
1 parent 1bf83cd commit 3faf4e8
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions build-aux/ci_build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3faf4e8

Please sign in to comment.