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 adee9ec commit a3da68aCopy full SHA for a3da68a
.github/workflows/ppc64le.yml
@@ -32,13 +32,13 @@ jobs:
32
- name: Debug .git directory inside container
33
run: |
34
docker run --rm -v "$(pwd):/workspace/pytorch" pytorch-ppc64le:ubi9.3 bash -c "ls -la /workspace/pytorch/.git || echo '.git directory not found'"
35
- - name: Debug Git Submodules
+
36
+ - name: Debug ownership inside container
37
38
docker run --rm -v "$(pwd):/workspace/pytorch" pytorch-ppc64le:ubi9.3 bash -c "
- echo 'Checking submodules...';
39
- git -C /workspace/pytorch submodule status;
40
- git -C /workspace/pytorch submodule foreach git status;
41
- "
+ ls -ld /workspace/pytorch;
+ ls -ld /workspace/pytorch/.git;
+ whoami"
42
43
44
- name: Run Docker container and execute build script
0 commit comments