CI: add no-backends build test
Some checks failed
labwc.github.io / notify (push) Has been cancelled

This commit is contained in:
Consolatis 2026-03-29 20:58:53 +02:00
parent 3df8fcda3a
commit 7be58fbaba

View file

@ -210,6 +210,19 @@ jobs:
meson compile -C build-gcc-no-feature
' | $TARGET
# No backend build, run on Arch only
- name: Build with gcc - no-backends test
if: matrix.name == 'Arch'
run: |
echo '
cd "$GITHUB_WORKSPACE"
export CC=gcc
meson setup build-gcc-no-backends \
-Dwlroots:backends= -Dwlroots:session=disabled --werror \
--force-fallback-for=wlroots
meson compile -C build-gcc-no-backends
' | $TARGET
# Unit tests, run on Arch only
- name: Build with gcc - unit test
if: matrix.name == 'Arch'