encfs/ci/build.sh

23 lines
263 B
Bash
Raw Normal View History

2017-08-08 01:58:03 +02:00
#!/bin/bash -eu
2017-08-08 06:38:10 +02:00
cmake --version
CFG=""
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
CFG="-DENABLE_NLS=OFF -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl"
fi
2017-08-08 01:58:03 +02:00
if [[ ! -d build ]]
then
2017-08-08 06:38:10 +02:00
mkdir build
2017-08-08 01:58:03 +02:00
fi
cd build
2017-08-08 06:38:10 +02:00
cmake .. ${CFG}
2017-08-08 01:58:03 +02:00
make -j2
make test
2017-08-08 17:50:44 +02:00
make integration
2017-08-08 01:58:03 +02:00
cd ..