Gitweb links:
...log
http://git.netsurf-browser.org/buildsystem.git/shortlog/6548d564fd7579580...
...commit
http://git.netsurf-browser.org/buildsystem.git/commit/6548d564fd75795806e...
...tree
http://git.netsurf-browser.org/buildsystem.git/tree/6548d564fd75795806ee9...
The branch, master has been updated
via 6548d564fd75795806ee9f9e7c6abaa43e56cdf5 (commit)
from 85a1a7673f7dda152f1209891bdacfabe0bfa39d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/buildsystem.git/commit/?id=6548d564fd75795...
commit 6548d564fd75795806ee9f9e7c6abaa43e56cdf5
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
make coverage builds not fail on warning
diff --git a/citools/jenkins-build.sh b/citools/jenkins-build.sh
index ae2dfec..2646427 100755
--- a/citools/jenkins-build.sh
+++ b/citools/jenkins-build.sh
@@ -153,7 +153,7 @@ ${MAKE} Q= clean HOST=${HOST} VARIANT=${VARIANT}
# build as per type requested
if [ "x${HOST}" = "x${TARGET_COVERAGE}" ]; then
# Coverage Build
- ${MAKE} Q= HOST=${HOST} VARIANT=${VARIANT} coverage
+ CFLAGS=-Wno-error ${MAKE} Q= HOST=${HOST} VARIANT=${VARIANT} coverage
gcovr -x -r build-${BUILD}-${HOST}-${VARIANT}-lib-static -o coverage.xml
-----------------------------------------------------------------------
Summary of changes:
citools/jenkins-build.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/citools/jenkins-build.sh b/citools/jenkins-build.sh
index ae2dfec..2646427 100755
--- a/citools/jenkins-build.sh
+++ b/citools/jenkins-build.sh
@@ -153,7 +153,7 @@ ${MAKE} Q= clean HOST=${HOST} VARIANT=${VARIANT}
# build as per type requested
if [ "x${HOST}" = "x${TARGET_COVERAGE}" ]; then
# Coverage Build
- ${MAKE} Q= HOST=${HOST} VARIANT=${VARIANT} coverage
+ CFLAGS=-Wno-error ${MAKE} Q= HOST=${HOST} VARIANT=${VARIANT} coverage
gcovr -x -r build-${BUILD}-${HOST}-${VARIANT}-lib-static -o coverage.xml
--
NetSurf Project build system