Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/_linux_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ jobs:
python -c "import torchaudio; print(torchaudio.__version__)"
python pytorch/torch/utils/collect_env.py
pip list |grep -E 'torch|intel'
chmod 777 /__w /github ./ -R
- name: Upload Torch XPU Wheel
if: ${{ success() }}
uses: actions/upload-artifact@v4
Expand All @@ -213,3 +212,8 @@ jobs:
with:
name: Torch-XPU-Build-Log-${{ github.event.pull_request.number || github.sha }}
path: ${{ github.workspace }}/build_*.log
- name: Cleanup workspace
if: ${{ always() }}
run: |
chmod 777 /__w /github ./ -R
find ./ |grep -v "^\./$" |xargs rm -rf