We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9156fc6 commit e4fbebfCopy full SHA for e4fbebf
.github/workflows/_linux-build.yml
@@ -321,8 +321,13 @@ jobs:
321
- name: Archive ppc64le artifacts into zip
322
if: inputs.build-environment == 'linux-ppc64le-binary-manywheel'
323
run: |
324
- cd dist
325
- zip -1 ../artifacts.zip *.whl
+ set -e
+ if [ -d "dist" ]; then
326
+ rm -f artifacts.zip # Remove old zip if it exists
327
+ zip -9 -r artifacts.zip dist/
328
+ else
329
+ echo "Warning: dist directory not found, skipping artifact creation."
330
+ fi
331
332
- name: Store PyTorch Build Artifacts for ppc64le
333
uses: actions/upload-artifact@v3
0 commit comments