From 1ca37d33537d6eb86317c98e296fbb5bad2241dc Mon Sep 17 00:00:00 2001 From: Morgan Funtowicz Date: Wed, 11 Dec 2024 22:17:37 +0100 Subject: [PATCH] misc(ci): let's use the correct way to invoke sccache --- .github/workflows/build_trtllm.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_trtllm.yaml b/.github/workflows/build_trtllm.yaml index f5ba93b4..a7934e51 100644 --- a/.github/workflows/build_trtllm.yaml +++ b/.github/workflows/build_trtllm.yaml @@ -52,7 +52,8 @@ jobs: SCCACHE_REGION: "us-east-1" SCCACHE_S3_USE_SSL: false SCCACHE_S3_KEY_PREFIX: "tgi+trtllm" - run: sccache build --package text-generation-backends-trtllm --bin text-generation-backends-trtllm + RUSTC_WRAPPER: sccache + run: cargo build --package text-generation-backends-trtllm --bin text-generation-backends-trtllm