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 71c3850 commit 7cd9627Copy full SHA for 7cd9627
.github/workflows/unit_test.yaml
@@ -50,7 +50,12 @@ jobs:
50
51
# Install torchstore
52
eval "$(ssh-agent -s)"
53
- ssh-add - <<< '${SECRET_FORGE_GITHUB_CI_FOR_TORCHSTORE}'
+ echo '${SECRET_FORGE_GITHUB_CI_FOR_TORCHSTORE}' >> torchstore_ssh_key
54
+ chmod 600 torchstore_ssh_key
55
+ # Print the first and last 2 lines of the key to make sure it's valid
56
+ head -2 torchstore_ssh_key
57
+ tail -2 torchstore_ssh_key
58
+ ssh-add torchstore_ssh_key
59
python -m pip install git+ssh://[email protected]/meta-pytorch/torchstore.git
60
61
# Install torchtitan
0 commit comments