mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
dc27ad41d2
Solution: pass built-root when calling coveralls, to help it find the right path to the source code.
30 lines
969 B
Bash
Executable File
30 lines
969 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
mkdir tmp
|
|
BUILD_PREFIX=$PWD/tmp
|
|
|
|
CONFIG_OPTS=()
|
|
CONFIG_OPTS+=("CFLAGS=-I${BUILD_PREFIX}/include")
|
|
CONFIG_OPTS+=("CPPFLAGS=-I${BUILD_PREFIX}/include")
|
|
CONFIG_OPTS+=("CXXFLAGS=-I${BUILD_PREFIX}/include")
|
|
CONFIG_OPTS+=("LDFLAGS=-L${BUILD_PREFIX}/lib")
|
|
CONFIG_OPTS+=("PKG_CONFIG_PATH=${BUILD_PREFIX}/lib/pkgconfig")
|
|
CONFIG_OPTS+=("--prefix=${BUILD_PREFIX}")
|
|
CONFIG_OPTS+=("--enable-code-coverage")
|
|
|
|
if [ -z $CURVE ]; then
|
|
CMAKE_OPTS+=("-DENABLE_CURVE=OFF")
|
|
elif [ $CURVE == "libsodium" ]; then
|
|
CMAKE_OPTS+=("-DWITH_LIBSODIUM=ON")
|
|
|
|
git clone --depth 1 -b stable git://github.com/jedisct1/libsodium.git
|
|
( cd libsodium; ./autogen.sh; ./configure --prefix=$BUILD_PREFIX; make install)
|
|
fi
|
|
|
|
pip install --user cpp-coveralls
|
|
|
|
# Build, check, and install from local source
|
|
( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make -j5 && make check && coveralls --exclude tests --build-root . --gcov-options '\-lp') || exit 1
|