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 a47ae4e commit 30904ecCopy full SHA for 30904ec
.github/workflows/ppc64le.yml
@@ -28,16 +28,15 @@ jobs:
28
29
- name: Run Docker container and execute build script
30
run: |
31
- docker run --rm pytorch-ppc64le:ubi9.3 /ppc64le-build.sh
+ docker run --rm -v $(pwd)/dist:/workspace/pytorch/dist pytorch-ppc64le:ubi9.3 /ppc64le-build.sh
32
33
- name: List directory contents
34
run: ls -R
35
36
- name: Archive artifacts into zip
37
38
- export PATH=$PATH:/usr/bin
39
- cd /workspace/pytorch
40
- zip -1 artifacts.zip dist/*.whl
+ cd dist
+ zip -1 ../artifacts.zip *.whl
41
42
- name: Store PyTorch Build Artifacts for s390x
43
uses: actions/upload-artifact@v3
0 commit comments