lsyncd/tests/ci-run.sh

12 lines
174 B
Bash
Raw Normal View History

2021-12-09 12:50:15 +00:00
#!/usr/bin/env bash
set -ex
SRC=`pwd`
BUILD_FOLDER=`mktemp -d`
echo "Build folder: $BUILD_FOLDER"
cd $BUILD_FOLDER
cmake $SRC
make VERBOSE=1
make tests
rm -rf $BUILD_FOLDER