CI: Don't use zlib-ng on cross-compiled AppImages

Seems to be problematic on armhf, and I can't be arsed debugging it.
This commit is contained in:
Stenzek 2025-03-23 23:40:58 +10:00
parent 104c82c2c3
commit 3f0abccb59
No known key found for this signature in database
2 changed files with 11 additions and 11 deletions

View File

@ -274,16 +274,17 @@ set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
EOF
# Build zlib first because of the things that depend on it.
if [ "$SKIP_ZLIBNG" != true ]; then
echo "Building zlib-ng..."
rm -fr "zlib-ng-$ZLIBNG"
tar xf "zlib-ng-$ZLIBNG.tar.gz"
cd "zlib-ng-$ZLIBNG"
cmake "${CMAKE_COMMON[@]}" -DBUILD_SHARED_LIBS=ON -DZLIB_COMPAT=ON -DZLIBNG_ENABLE_TESTS=OFF -DZLIB_ENABLE_TESTS=OFF -DWITH_GTEST=OFF -B build -G Ninja
cmake --build build --parallel
ninja -C build install
cd ..
fi
# Disabled because it currently causes crashes on armhf.
#if [ "$SKIP_ZLIBNG" != true ]; then
# echo "Building zlib-ng..."
# rm -fr "zlib-ng-$ZLIBNG"
# tar xf "zlib-ng-$ZLIBNG.tar.gz"
# cd "zlib-ng-$ZLIBNG"
# cmake "${CMAKE_COMMON[@]}" -DBUILD_SHARED_LIBS=ON -DZLIB_COMPAT=ON -DZLIBNG_ENABLE_TESTS=OFF -DZLIB_ENABLE_TESTS=OFF -DWITH_GTEST=OFF -B build -G Ninja
# cmake --build build --parallel
# ninja -C build install
# cd ..
#fi
# NOTE: Must be a shared library because otherwise aarch64 libgcc symbols are missing when building with clang.
echo "Building libbacktrace..."

View File

@ -107,7 +107,6 @@ declare -a DEPLIBS=(
"libwebpdemux.so.2"
"libwebpmux.so.3"
"libwebp.so.7"
"libz.so.1"
"libzip.so.5"
"libzstd.so.1"