From: Ed Warnicke Date: Wed, 3 Feb 2016 03:27:33 +0000 (-0700) Subject: Enabled CCACHE_DIR to persist between jobs X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=b3861bf6c11aa63a77d1e73b16c40d6f984cb041;p=ci-management.git Enabled CCACHE_DIR to persist between jobs Change-Id: I7d7fc9c8c0dd561e4abbab481ccf4f879763e2e6 Signed-off-by: Ed Warnicke --- diff --git a/jjb/vpp/include-raw-vpp-build.sh b/jjb/vpp/include-raw-vpp-build.sh index 61fd94e42..f3cb320bd 100644 --- a/jjb/vpp/include-raw-vpp-build.sh +++ b/jjb/vpp/include-raw-vpp-build.sh @@ -3,6 +3,13 @@ # do nothing but print the current slave hostname hostname +export CCACHE_DIR=/tmp/ccache +if [ -d $CCACHE_DIR ];then + echo $CCACHE_DIR exists + du -sk $CCACHE_DIR +else + echo $CCACHE_DIR does not exist. This must be a new slave. +fi cd build-root/ ./bootstrap.sh make PLATFORM=vpp V=0 TAG=vpp install-deb