From b6d7dec289be4d161f03b884caf1bfa43c691fe0 Mon Sep 17 00:00:00 2001 From: Thomas Ferreira de Lima Date: Tue, 18 Dec 2018 18:05:10 -0500 Subject: [PATCH] showing ccache stats --- ci-scripts/docker/docker_build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci-scripts/docker/docker_build.sh b/ci-scripts/docker/docker_build.sh index 58dccef8b..fd3cff7a2 100755 --- a/ci-scripts/docker/docker_build.sh +++ b/ci-scripts/docker/docker_build.sh @@ -35,6 +35,9 @@ cd /io # Compile wheel "/opt/python/$PY_VERSION/bin/python" setup.py bdist_wheel -d /io/wheelhouse/ || exit 1 +# Show ccache stats +ccache -s + # Bundle external shared libraries into the wheels via auditwheel for whl in /io/wheelhouse/*linux_*.whl; do auditwheel repair "$whl" -w /io/wheelhouse/ || exit 1