From 37576c894900dab4c35074f6a85230bf13151539 Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Tue, 25 Apr 2023 13:11:58 +0900 Subject: [PATCH] ci: show sccache version and prefix (#31317) * ci: Show sccache version as well * hmm, where's sccache?? (and prefix bonus) * Use $PATH's sccache for consistency --- ci/docker-run.sh | 2 +- ci/test-checks.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/docker-run.sh b/ci/docker-run.sh index 6dd20b28e..0cc87bd44 100755 --- a/ci/docker-run.sh +++ b/ci/docker-run.sh @@ -54,7 +54,7 @@ if [[ -n $CI ]]; then # sccache-related bugs echo "--- $0 ... (with sccache being DISABLED due to many (${BUILDKITE_RETRY_COUNT}) retries)" else - echo "--- $0 ... (with sccache enabled)" + echo "--- $0 ... (with sccache enabled with prefix: $SCCACHE_S3_KEY_PREFIX)" # sccache ARGS+=( --env "RUSTC_WRAPPER=/usr/local/cargo/bin/sccache" diff --git a/ci/test-checks.sh b/ci/test-checks.sh index ae0ed762a..3a624c4c5 100755 --- a/ci/test-checks.sh +++ b/ci/test-checks.sh @@ -46,6 +46,8 @@ echo --- build environment cargo audit --version grcov --version + + sccache --version ) export RUST_BACKTRACE=1