From dc27ad41d28217fefecbdc77841d86c5a5a43db8 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sat, 19 Mar 2016 21:35:40 +0000 Subject: [PATCH] Problem: coveralls uses wrong path on Trusty Solution: pass built-root when calling coveralls, to help it find the right path to the source code. --- builds/coverage/ci_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builds/coverage/ci_build.sh b/builds/coverage/ci_build.sh index 065f2bfb..e9f836b4 100755 --- a/builds/coverage/ci_build.sh +++ b/builds/coverage/ci_build.sh @@ -26,4 +26,4 @@ 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 --gcov-options '\-lp') || exit 1 +( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make -j5 && make check && coveralls --exclude tests --build-root . --gcov-options '\-lp') || exit 1