From 4c891497bbf2a3bb7d2f013bd7308c3be176d50f Mon Sep 17 00:00:00 2001 From: Bugen Zhao Date: Mon, 22 Jan 2024 17:34:06 +0800 Subject: [PATCH] comment why disable sccahe Signed-off-by: Bugen Zhao --- ci/scripts/check-dylint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/check-dylint.sh b/ci/scripts/check-dylint.sh index 22f3e11b53da..9101215e93cf 100755 --- a/ci/scripts/check-dylint.sh +++ b/ci/scripts/check-dylint.sh @@ -4,7 +4,7 @@ set -euo pipefail source ci/scripts/common.sh -unset RUSTC_WRAPPER +unset RUSTC_WRAPPER # disable sccache, see https://github.com/mozilla/sccache/issues/861 echo "--- Run dylint check (dev, all features)" # Instead of `-D warnings`, we only deny warnings from our own lints. This is because...