mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
CI: verify early exit on missing fonts
This commit is contained in:
parent
ca287de584
commit
3bd5964e34
2 changed files with 23 additions and 2 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
|
@ -262,3 +262,15 @@ jobs:
|
|||
meson compile -C build-gcc-gdb
|
||||
LABWC_RUNS=2 scripts/ci/smoke-test.sh build-gcc-gdb
|
||||
' | $TARGET
|
||||
|
||||
- name: Build with gcc - catch no font installed case
|
||||
if: matrix.name == 'Void-musl'
|
||||
run: |
|
||||
echo '
|
||||
cd "$GITHUB_WORKSPACE"
|
||||
xbps-remove -y dejavu-fonts-ttf
|
||||
export CC=gcc
|
||||
meson setup build-gcc-nofont -Dxwayland=enabled --werror
|
||||
meson compile -C build-gcc-nofont
|
||||
LABWC_EXPECT_RETURNCODE=1 scripts/ci/smoke-test.sh build-gcc-nofont
|
||||
' | $TARGET
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue