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 ee833c56e09b95d8c11217e8a3f614470833f2d5 (commit)
from 6576ed1f000f326a44c636a3e5d832a7a2cfd4f7 (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 ee833c56e09b95d8c11217e8a3f614470833f2d5
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Fri Nov 9 13:01:14 2018 +0300
travis: install graphviz in doxygen test
Install graphviz to stop doxygen from emitting 'missing dot' errors.
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Signed-off-by: Balasubramanian Manoharan <bala.manoharan(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Reviewed-by: Petri Savolainen <petri.savolainen(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/.travis.yml b/.travis.yml
index f2b87b7b..85ab9ae4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -196,6 +196,7 @@ jobs:
- libconfig-dev
- libssl-dev
- cmake
+ - graphviz
install:
# Updated Doxygen
- |
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 1 +
1 file changed, 1 insertion(+)
hooks/post-receive
--
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 6c2c1bbf83a2a69b99d28baecfc8bd3421b651d6 (commit)
from 35525f70aa68e55dca6b05cf59a515c50e7dcba2 (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 6c2c1bbf83a2a69b99d28baecfc8bd3421b651d6
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Fri Nov 16 16:47:02 2018 +0300
travis: define compiler for clang test
without specifying compiler CC falls back to default gcc
after it was initialized to clang. Current change forces
test to use clang.
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Reviewed-by: Petri Savolainen <petri.savolainen(a)linaro.org>
diff --git a/.travis.yml b/.travis.yml
index d06530ce..f2b87b7b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -231,7 +231,8 @@ jobs:
-e CC="${CC}"
${DOCKER_NAMESPACE}/travis-odp-lng-ubuntu_16.04 /odp/scripts/ci/build_${ARCH}.sh
- stage: "build only"
- env: ARCH=x86_64 CC=clang
+ env: ARCH=x86_64
+ compiler: clang
install:
- true
script:
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--