From 322b9ec2c876dfb10f3ea1eeffcc149d6eb37992 Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Thu, 9 Apr 2026 17:26:09 +0100 Subject: [PATCH] fix(ci): add rustfmt + clippy to wfe-ci image --- Dockerfile.ci | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index c359c27..38c76b8 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -43,8 +43,8 @@ ARG TEA_VERSION=0.11.0 RUN curl -fsSL "https://gitea.com/gitea/tea/releases/download/v${TEA_VERSION}/tea-${TEA_VERSION}-linux-amd64" \ -o /usr/local/bin/tea && chmod +x /usr/local/bin/tea -# llvm tools (needed by cargo-llvm-cov) -RUN rustup component add llvm-tools-preview +# Rust components for CI lint + coverage +RUN rustup component add llvm-tools-preview rustfmt clippy # Sccache wrapper config — expects SCCACHE_S3_ENDPOINT, SCCACHE_BUCKET, etc. via env. ENV RUSTC_WRAPPER=/usr/local/cargo/bin/sccache \