summaryrefslogtreecommitdiff
path: root/tests/ci/build_and_test.sh
blob: 8e2e5e47f5b002fb29dc863404c1d30f4ef0ac3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

if [ -d "build" ]; then
  rm build -rf
fi
meson build -Dlocal_checkout=true -Ddaemon_tests=false $@

# Build, Test & Install
ninja -C build
meson test -C build --print-errorlogs
DEST=/tmp/install_root/ ninja -C build install