[ci,alt-arch] fix gsm, simplify config

This commit is contained in:
akallabeth 2025-03-14 13:27:19 +01:00
parent 099f512219
commit 2ceabe6794
No known key found for this signature in database
GPG Key ID: A49454A3FC909FD5
3 changed files with 6 additions and 8 deletions

View File

@ -38,8 +38,6 @@ jobs:
install: |
echo "whoami: $(whoami)"
echo "working directory: $(pwd)"
find /etc/apt -name "*.list" -exec sed -i '/deb-src/s/^# //' {} \;
find /etc/apt -name "*.sources" -exec sed -i '/Types: deb/Types: deb deb-src//' {} \;
apt-get update -q -y
apt-get install -q -y devscripts clang ninja-build ccache equivs
@ -53,9 +51,6 @@ jobs:
-S . \
-DCMAKE_INSTALL_PREFIX=/tmp/ci-test \
-DCMAKE_C_COMPILER=/usr/bin/clang \
-DCMAKE_CXX_COMPILER=/usr/bin/clang++ \
-DUSE_UNWIND=OFF \
-DUSE_EXECINFO=OFF \
-DWITH_SANITIZE_ADDRESS=OFF
-DCMAKE_CXX_COMPILER=/usr/bin/clang++
cmake --build ci-build --parallel $(nproc) --target install
cmake --build ci-build --parallel $(nproc) --target test

View File

@ -10,7 +10,7 @@ set(WITH_WAYLAND ON CACHE BOOL "preload")
set(WITH_KRB5 ON CACHE BOOL "preload")
set(WITH_PCSC ON CACHE BOOL "preload")
set(WITH_JPEG ON CACHE BOOL "preload")
set(WITH_GSM OFF CACHE BOOL "preload")
set(WITH_GSM ON CACHE BOOL "preload")
set(CHANNEL_URBDRC ON CACHE BOOL "preload")
set(CHANNEL_URBDRC_CLIENT ON CACHE BOOL "preload")
set(WITH_SERVER ON CACHE BOOL "preload")
@ -46,7 +46,9 @@ set(WITH_DEBUG_X11_LOCAL_MOVESIZE OFF CACHE BOOL "preload")
set(WITH_DEBUG_XV OFF CACHE BOOL "preload")
set(WITH_SAMPLE ON CACHE BOOL "preload")
set(WITH_NO_UNDEFINED ON CACHE BOOL "preload")
set(WITH_SANITIZE_ADDRESS ON CACHE BOOL "preload")
set(WITH_SANITIZE_ADDRESS OFF CACHE BOOL "preload")
set(USE_UNWIND OFF CACHE BOOL "preload")
set(USE_EXECINFO OFF CACHE BOOL "preload")
set(WITH_FFMPEG ON CACHE BOOL "preload")
set(WITH_SWSCALE ON CACHE BOOL "preload")
set(WITH_DSP_FFMPEG ON CACHE BOOL "preload")

View File

@ -37,6 +37,7 @@ Build-Depends:
libavcodec-dev,
libavutil-dev,
libfuse3-dev,
libgsm1-dev,
libswresample-dev | libavresample-dev,
libusb-1.0-0-dev,
libudev-dev,