From be88b5a6e827d88eb3095262c98ab49671a1de9f Mon Sep 17 00:00:00 2001 From: Francisco Ferreira Date: Fri, 25 Aug 2017 01:13:50 +0100 Subject: [PATCH] Tools: ci: get ccache statistics for SITL test --- Tools/scripts/build_ci.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tools/scripts/build_ci.sh b/Tools/scripts/build_ci.sh index a651d05314..ed8da4d55b 100755 --- a/Tools/scripts/build_ci.sh +++ b/Tools/scripts/build_ci.sh @@ -41,10 +41,13 @@ if [ "$CI_BUILD_TARGET" = "sitltest" ]; then unset BUILDROOT echo "Running SITL QuadCopter test" Tools/autotest/autotest.py build.ArduCopter fly.ArduCopter + ccache -s && ccache -z echo "Running SITL QuadPlane test" Tools/autotest/autotest.py build.ArduPlane fly.QuadPlane + ccache -s && ccache -z echo "Running SITL Rover test" Tools/autotest/autotest.py build.APMrover2 drive.APMrover2 + ccache -s && ccache -z exit 0 fi