From a8eeb1f7d9f9c817435b9c86ef5957c08602b433 Mon Sep 17 00:00:00 2001 From: Adrian RC Date: Wed, 19 Nov 2025 00:59:04 +0000 Subject: [PATCH] Purge pip cache after build step in CI workflow --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c509b97d2b..89db46d84b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,6 +98,10 @@ jobs: bazel build //tensorboard/... |&\ grep -v 'external/com_google_protobuf/python: warning: directory' |&\ grep -v 'INFO: From ProtoCompile ' ) + - name: 'Purge pip cache' + # The provisioned VM is running out of space, so we attempt to + # delete cached package info to release some disk space. + run: pip cache purge - name: 'Bazel: test (with TensorFlow support)' run: bazel test //tensorboard/... if: matrix.tf_version_id != 'notf'