summaryrefslogtreecommitdiff
path: root/check.sh
diff options
context:
space:
mode:
Diffstat (limited to 'check.sh')
-rwxr-xr-xcheck.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/check.sh b/check.sh
index 82ebe7c..e76bd16 100755
--- a/check.sh
+++ b/check.sh
@@ -7,11 +7,11 @@ for f in $(find pypaste -type f); do
done
if [[ ! -d build ]]; then
- meson setup build || exit $?
+ meson setup build -Dserver=enabled -Dclient=enabled|| exit $?
fi
destdir=$(mktemp -d)
-meson install --destdir=${destdir} -C build || exit $?
+meson test -C build || exit $?
-tree ${destdir}
+meson install --destdir=${destdir} -C build || exit $?