From 4075f5c497f8554e320a6208e14f7ac99d345d05 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Sun, 12 Jul 2020 23:15:32 +0000 Subject: [PATCH] CI/FreeBSD: clear ccache stats, so new hits are easier to notice --- .ci/build-freebsd.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.ci/build-freebsd.sh b/.ci/build-freebsd.sh index 0527d16d0e..186b786223 100755 --- a/.ci/build-freebsd.sh +++ b/.ci/build-freebsd.sh @@ -1,7 +1,5 @@ #!/bin/sh -ex -ccache -s # debug - # Pull all the submodules except llvm # Note: Tried to use git submodule status, but it takes over 20 seconds # shellcheck disable=SC2046 @@ -30,4 +28,5 @@ CONFIGURE_ARGS=" cmake -B build -G Ninja $CONFIGURE_ARGS cmake --build build -ccache -s # debug +ccache --show-stats +ccache --zero-stats