encfs/ci/check.sh

15 lines
104 B
Bash
Raw Normal View History

2017-08-08 01:58:03 +02:00
#!/bin/bash -eu
if [[ ! -d build ]]
then
mkdir build
fi
cd build
cmake ..
make -j2
make test
cd ..