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 be4c103d0eeaf41422276796829a2191dc71258d (commit) from f09c70ad34d98c5f834868c04a72733615cef88a (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 be4c103d0eeaf41422276796829a2191dc71258d Author: Mike Holmes mike.holmes@linaro.org Date: Fri Oct 21 14:40:18 2016 -0400
add travis.yml for gitub automation
allows pushes to a github clone of ODP to automatically trigger CI builds
Signed-off-by: Mike Holmes mike.holmes@linaro.org Reviewed-by: Brian Brooks brian.brooks@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0d1add3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,35 @@ +# Copyright (c) 2016, Linaro Limited +# All rights reserved. +# SPDX-License-Identifier: BSD-3-Clause + + + +language: c +compiler: clang +sudo: required + +before_install: + - sudo apt-get -qq update + - sudo apt-get install automake autoconf libtool libssl-dev graphviz mscgen doxygen + - gem install asciidoctor + +# Install cunit for the validation tests because distro version is too old and fails C99 compile + - export CUNIT_VERSION=2.1-3 + - curl -sSOL http://sourceforge.net/projects/cunit/files/CUnit/%24%7BCUNIT_VERSION%7D/CUn... + - tar -jxf *.bz2 + - cd CUnit* + - ./bootstrap + - ./configure --enable-debug --enable-automated --enable-basic --enable-console --enable-examples --enable-test + - make + - sudo make install + - cd .. + - export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" + +install: + - ./bootstrap + +script: + - ./configure --enable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-user-guides --enable-test-perf-proc --enable-test-example + - make check + - make doxygen-doc + - make distcheck
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .travis.yml
hooks/post-receive