#!/bin/sh

git-scripts/update-project-status.sh && meson compile -C builddir && meson test -C builddir

RESULT=$?

[ $RESULT -ne 0 ] && exit 1

exit 0
