This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via 3600304c30c4a345538f6c06ca50183b14cd12b1 (commit) via 4ec4a756c7607e3a78878e6699a82ccf6d0a1461 (commit) from 0f700e1a4b8e66c269081eba64eb5be8c37de868 (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 ----------------------------------------------------------------- commit 3600304c30c4a345538f6c06ca50183b14cd12b1 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Sat Apr 28 16:06:42 2018 +0300
doc: allow user to provide exta asciidoctor flags
Allow user to provide extra asciidoctor flags. E.g. this allows one to override icons and/or fonts placement.
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/doc/Makefile.inc b/doc/Makefile.inc index 23703127..1732c355 100644 --- a/doc/Makefile.inc +++ b/doc/Makefile.inc @@ -13,4 +13,5 @@ SUFFIXES = .svg .msc .gv .html .adoc .adoc.html: asciidoctor $(ASCIIDOC_FLAGS) --out-file=$@ $<
-ASCIIDOC_FLAGS =-a data-uri -b html5 -a icons=font -a toc2 +ASCIIDOC_FLAGS =-a data-uri -b html5 -a icons=font -a toc2 \ + $(EXTRA_ASCIIDOC_FLAGS)
commit 4ec4a756c7607e3a78878e6699a82ccf6d0a1461 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Sat Apr 28 10:57:32 2018 +0300
travis: do not run gcov before executing codecov script
There is no need to manually run gcov from Travis script, codecov.io will do that for us.
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/.travis.yml b/.travis.yml index a6cce816..cb05b839 100644 --- a/.travis.yml +++ b/.travis.yml @@ -310,7 +310,7 @@ jobs: - sudo CCACHE_DISABLE=1 ODP_SCHEDULER=sp LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" make check - sudo CCACHE_DISABLE=1 ODP_SCHEDULER=iquery LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" make check - sudo CCACHE_DISABLE=1 ODP_SCHEDULER=scalable LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" make check - - find . -type f -iname '*.[ch]' -not -path ".git/*" -execdir gcov {} ; ; bash <(curl -s https://codecov.io/bash) -X coveragepy + - bash <(curl -s https://codecov.io/bash) -X coveragepy - stage: test env: TEST=distcheck compiler: gcc
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 2 +- doc/Makefile.inc | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive