encfs/ci/check.sh
2017-08-07 19:58:03 -04:00

15 lines
104 B
Bash

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