We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e321dda commit 621e7fdCopy full SHA for 621e7fd
1 file changed
.github/packaging/pre_build_nightly.sh
@@ -27,9 +27,11 @@ echo "Installing torchstore dependencies..."
27
pip install pygtrie
28
29
echo "Installing torchstore from main branch..."
30
-rm -rf /tmp/torchstore # Remove if exists from previous run
31
-git clone https://github.com/pytorch/torchstore.git /tmp/torchstore
32
-cd /tmp/torchstore
+TORCHSTORE_DIR="/tmp/torchstore-build"
+mkdir -p "$TORCHSTORE_DIR"
+cd "$TORCHSTORE_DIR"
33
+git clone https://github.com/pytorch/torchstore.git
34
+cd torchstore
35
git checkout main
36
pip install --no-deps .
37
cd -
0 commit comments