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 b6308d6f7cf7bf42b5ff6807ae659db83a66ce78 (commit) from 422ed4f2be27223b53c39a3d3f7b973781a6a420 (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 b6308d6f7cf7bf42b5ff6807ae659db83a66ce78 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Wed Jul 26 09:46:38 2017 +0300
travis: enable ccache and pip cache
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 b1f8e4ce..ed7eb2ba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,6 +58,10 @@ compiler: - gcc - clang-3.8
+cache: + - ccache + - pip + env: - CONF="" - CONF="--disable-abi-compat" @@ -82,6 +86,8 @@ before_install: sudo -E apt-get -y --no-install-suggests --no-install-recommends --force-yes install build-essential gcc-"$CROSS_GNU_TYPE" pkg-config-"$CROSS_GNU_TYPE" ; sudo -E apt-get -y --no-install-suggests --no-install-recommends --force-yes install libc6-dev:"$CROSS_ARCH" libssl-dev:"$CROSS_ARCH" zlib1g-dev:"$CROSS_ARCH" libconfig-dev:"$CROSS_ARCH" ; fi + - if test ! -L /usr/lib/ccache/${CC%% *} ; then sudo ln -s -t /usr/lib/ccache/ `which ${CC%% *}` ; fi + - ccache -s
# Install cunit for the validation tests because distro version is too old and fails C99 compile - sudo apt-get remove libcunit1-dev libcunit1 @@ -151,6 +157,7 @@ script: - echo "Static link.." - ${CC} ${OLDPWD}/example/hello/odp_hello.c -o odp_hello_inst `PKG_CONFIG_PATH=${HOME}/odp-install/lib/pkgconfig pkg-config --cflags --libs libodp-linux --static` -static - ./odp_hello_inst + - ccache -s
jobs: include:
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+)
hooks/post-receive