From f1ce859464e03b129d7dd504f8d6ff2becd78ba9 Mon Sep 17 00:00:00 2001 From: CSY-ModelCloud Date: Tue, 21 Apr 2026 12:00:43 +0800 Subject: [PATCH] [CI} clean uv cache at end --- .github/workflows/unit_tests_reusable.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit_tests_reusable.yml b/.github/workflows/unit_tests_reusable.yml index 4dab14057..4011e809b 100644 --- a/.github/workflows/unit_tests_reusable.yml +++ b/.github/workflows/unit_tests_reusable.yml @@ -120,7 +120,8 @@ jobs: - name: Activate uv env run: | - printenv | grep UV + + uv cache prune --ci bash .github/scripts/ci_unit_activate_uv_env.sh \ "${{ matrix.test_script }}" \ @@ -238,3 +239,5 @@ jobs: rm -rf ./* .[^.] .??* || true echo "cleaning venv: ${{ env.VIRTUAL_ENV }}" rm -rf "${{ env.VIRTUAL_ENV }}" + echo "Cleaning uv cache" + uv cache prune --ci