encfs/ci/check.sh
2017-08-07 20:05:27 -04:00

15 lines
104 B
Bash
Executable File

#!/bin/bash -eu
if [[ ! -d build ]]
then
mkdir build
fi
cd build
cmake ..
make -j2
make test
cd ..