libxml2/.gitlab-ci/test_meson.sh
2025-02-18 23:15:20 +01:00

20 lines
460 B
Bash

#!/bin/sh
set -e
# compile with the following warnings:
# --warnlevel 3 : passes to the compiler -Wall -Wextra -Wpedantic
# --werror : passes to the compiler -Werror
# --default-library : can be 'shared', 'static' or 'both'
meson setup \
--warnlevel 3 \
--werror \
--buildtype=debugoptimized \
--default-library shared \
-Dlegacy=enabled \
builddir
ninja -C builddir
meson test --verbose -C builddir