Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup after ARM GPU runner #1074

Merged
merged 4 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@

### Bug fixes

* Fix Github CI for aarch64 cuda to clean up after runs.
[(#1074)](https://github.com/PennyLaneAI/pennylane-lightning/pull/1074)

* Increase maximum time for aarch64-CUDA Github CI action .
[(#1070)](https://github.com/PennyLaneAI/pennylane-lightning/pull/1070)

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/wheel_linux_aarch64_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@ jobs:
retention-days: 1
include-hidden-files: true

- name: Cleanup
if: always()
run: |
rm -rf ${{ steps.setup_venv.outputs.venv_name }}
rm -rf * .git .gitignore .github
pip cache purge

upload-pypi:
needs: [set_wheel_build_matrix, linux-wheels-aarch64]
strategy:
Expand All @@ -168,3 +175,10 @@ jobs:
with:
verbose: true
repository-url: https://test.pypi.org/legacy/

- name: Cleanup
if: always()
run: |
rm -rf ${{ steps.setup_venv.outputs.venv_name }}
rm -rf * .git .gitignore .github
pip cache purge
Loading