ci: Add -Dtrim_dsp=false in a couple of aarch64/arm configurations

For the "release" build configurations, trim_dsp defaults to true,
while it defaults to false for "debugoptimized". This means that
the configurations with release mode, without -Dtrim_dsp=false
actually run checkasm before.

In practice, checkasm is covered by later, full-test configurations,
but this ensures that we do test it at this stage as well, as
intended.
This commit is contained in:
Martin Storsjö
2026-06-07 22:36:10 +02:00
committed by Jean-Baptiste Kempf
co-authored by Jean-Baptiste Kempf
parent beda1b3cda
commit 720adf9b5b
+4
View File
@@ -342,6 +342,7 @@ build-debian-aarch64:
extends: .debian-aarch64-common
script:
- meson setup build --buildtype debugoptimized
-Dtrim_dsp=false
--werror
- ninja -C build
- cd build && meson test -v
@@ -353,6 +354,7 @@ build-debian-aarch64-clang-5:
CFLAGS: '-integrated-as'
script:
- meson setup build --buildtype release
-Dtrim_dsp=false
- ninja -C build
- cd build && meson test -v
@@ -400,6 +402,7 @@ build-debian-armv7:
extends: .debian-armv7-common
script:
- linux32 meson setup build --buildtype debugoptimized
-Dtrim_dsp=false
--werror
- ninja -C build
- cd build && meson test -v
@@ -411,6 +414,7 @@ build-debian-armv7-clang-5:
CFLAGS: '-integrated-as'
script:
- linux32 meson setup build --buildtype release
-Dtrim_dsp=false
- ninja -C build
- cd build && meson test -v