This is an automated email from the ASF dual-hosted git repository.

vterentev pushed a commit to branch fix-python-313
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/fix-python-313 by this push:
     new a7f3a81dbc4 Remove cache
a7f3a81dbc4 is described below

commit a7f3a81dbc49c60b07a5fb88ca55b046899657da
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Tue Oct 7 12:17:19 2025 +0400

    Remove cache
---
 .github/workflows/beam_PostCommit_XVR_Spark3.yml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/beam_PostCommit_XVR_Spark3.yml 
b/.github/workflows/beam_PostCommit_XVR_Spark3.yml
index 7d431c7312c..d971935b94b 100644
--- a/.github/workflows/beam_PostCommit_XVR_Spark3.yml
+++ b/.github/workflows/beam_PostCommit_XVR_Spark3.yml
@@ -75,6 +75,13 @@ jobs:
         uses: ./.github/actions/setup-environment-action
         with:
           python-version: ${{ matrix.python_version }}
+      - name: Clean cache
+        run: |
+          rm -rf "$HOME/.apache_beam/cache/venvs/py-3.13-beam-2.68.0-"* || true
+          # optional: clear cached wheels the bootstrapper might reuse
+          rm -rf "$HOME/.apache_beam/cache/pip/"* || true
+      - name: Check Beam version
+        run: python -c "import apache_beam as b; print(b.__version__)"
       - name: run PostCommit XVR Spark3 script
         env:
           CLOUDSDK_CONFIG: ${{ env.KUBELET_GCLOUD_CONFIG_PATH}}
@@ -97,4 +104,4 @@ jobs:
           commit: '${{ env.prsha || env.GITHUB_SHA }}'
           comment_mode: ${{ github.event_name == 'issue_comment'  && 'always' 
|| 'off' }}
           files: '**/build/test-results/**/*.xml'
-          large_files: true
\ No newline at end of file
+          large_files: true

Reply via email to