diff --git a/ci_scripts/remote_python_packaging.sh b/ci_scripts/remote_python_packaging.sh index 61f2e8c9a..c185b78b1 100755 --- a/ci_scripts/remote_python_packaging.sh +++ b/ci_scripts/remote_python_packaging.sh @@ -30,6 +30,8 @@ set +x ssh $SSHTARGET bash -c "cat >$BUILDDIR/exec_docker_run" <<_HERE set +x -e + # make sure all processes exit when ssh dies + shopt -s huponexit cd $BUILDDIR export DCC_PY_LIVECONFIG=$DCC_PY_LIVECONFIG export DCC_NEW_TMP_EMAIL=$DCC_NEW_TMP_EMAIL @@ -44,7 +46,7 @@ _HERE echo "--- Running $CIRCLE_JOB remotely" -ssh -t $SSHTARGET bash "$BUILDDIR/exec_docker_run" +ssh $SSHTARGET bash "$BUILDDIR/exec_docker_run" mkdir -p workspace rsync -avz "$SSHTARGET:$BUILDDIR/python/.docker-tox/wheelhouse/*manylinux201*" workspace/wheelhouse/ rsync -avz "$SSHTARGET:$BUILDDIR/python/.docker-tox/dist/*" workspace/wheelhouse/ diff --git a/ci_scripts/remote_tests_python.sh b/ci_scripts/remote_tests_python.sh index 05df27417..e787a734e 100755 --- a/ci_scripts/remote_tests_python.sh +++ b/ci_scripts/remote_tests_python.sh @@ -24,6 +24,10 @@ echo "--- Running $CIRCLE_JOB remotely" ssh $SSHTARGET <<_HERE set +x -e + + # make sure all processes exit when ssh dies + shopt -s huponexit + export RUSTC_WRAPPER=\`which sccache\` cd $BUILDDIR # let's share the target dir with our last run on this branch/job-type diff --git a/ci_scripts/remote_tests_rust.sh b/ci_scripts/remote_tests_rust.sh index 0e2ea280f..5498d38ef 100755 --- a/ci_scripts/remote_tests_rust.sh +++ b/ci_scripts/remote_tests_rust.sh @@ -20,6 +20,8 @@ echo "--- Running $CIRCLE_JOB remotely" ssh $SSHTARGET <<_HERE set +x -e + # make sure all processes exit when ssh dies + shopt -s huponexit export RUSTC_WRAPPER=\`which sccache\` cd $BUILDDIR # let's share the target dir with our last run on this branch/job-type