Skip to content
Snippets Groups Projects
Commit fa63e3ed authored by Marek Vavruša's avatar Marek Vavruša
Browse files

travis: added cmocka for tests

parent fcbf43cb
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
set -e
CMOCKA_TAG="cmocka-0.4.1"
PKG_CONFIG_PATH="${1}/lib/pkgconfig"
if [ -z ${1} ]; then
......@@ -44,6 +45,19 @@ if [ ! -e ${1}/include/libknot ]; then
cd ..
fi
# cmocka
if [ ! -e ${1}/include/cmocka.h ]; then
wget http://git.cryptomilk.org/projects/cmocka.git/snapshot/${CMOCKA_TAG}.tar.gz
tar xvzf ${CMOCKA_TAG}.tar.gz
cd ${CMOCKA_TAG}
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=${1} ..
make
make install
cd ../..
fi
# libuv
if [ ! -e ${1}/include/uv.h ]; then
git clone https://github.com/libuv/libuv.git || true
......@@ -53,5 +67,3 @@ if [ ! -e ${1}/include/uv.h ]; then
make
make install
fi
ldconfig || true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment