From a2ca17f3f3fef6883bbbf0f94e39a981e7cfeb84 Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Sun, 14 Nov 2021 16:16:34 +0000 Subject: [PATCH] Show sccache stats at end of build --- .woodpecker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index a1e2dd2..e8858a3 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -18,7 +18,6 @@ pipeline: - DEBIAN_FRONTEND=noninteractive apt-get -qq update && apt-get -yqq install pkg-config libssl-dev build-essential libsqlite3-dev > /dev/null - cargo build --all - cargo test --all - - ls ~/.cache/sccache || : - sccache --show-stats environment: RUSTC_WRAPPER: /usr/local/bin/sccache @@ -45,6 +44,7 @@ pipeline: - python3.9 -m venv testsuite/.venv - ./testsuite/.venv/bin/pip install -e testsuite -e datman-helper-postgres -e datman-helper-mysql - cd testsuite && . .venv/bin/activate && TEST_POSTGRES=$(hostname),testsuitedb,root TEST_MYSQL=$(hostname),testsuitemydb,root green + - sccache --show-stats environment: RUSTC_WRAPPER: /usr/local/bin/sccache SCCACHE_S3_USE_SSL: "true"