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 15660f2 commit 8b78e12Copy full SHA for 8b78e12
scripts/remote_python_packaging.sh
@@ -29,7 +29,7 @@ set +x
29
30
for arch in "" "-arm64"; do
31
32
-ssh -o ServerAliveInterval=30 $SSHTARGET bash -c "cat >${BUILDDIR}${arch}/exec_docker_run" <<_HERE
+ssh $SSHTARGET bash -c "cat >${BUILDDIR}${arch}/exec_docker_run" <<_HERE
33
set +x -e
34
shopt -s huponexit
35
cd ${BUILDDIR}${arch}
@@ -48,10 +48,10 @@ done
48
echo "--- Running $CIRCLE_JOB remotely"
49
50
echo "--- Building aarch64 wheels"
51
-ssh -t $SSHTARGET bash "$BUILDDIR-arm64/exec_docker_run"
+ssh -o ServerAliveInterval=30 -t $SSHTARGET bash "$BUILDDIR-arm64/exec_docker_run"
52
53
echo "--- Building x86_64 wheels"
54
-ssh -t $SSHTARGET bash "$BUILDDIR/exec_docker_run"
+ssh -o ServerAliveInterval=30 -t $SSHTARGET bash "$BUILDDIR/exec_docker_run"
55
56
mkdir -p workspace
57
0 commit comments