-
-
Notifications
You must be signed in to change notification settings - Fork 32k
bpo-41173: Copy test results file from ARM worker before uploading #21305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
set ERR=%ERRORLEVEL% | ||
echo where scp | ||
where scp | ||
echo scp %SSH_SERVER%:"%REMOTE_PYTHON_DIR%test-results.xml" "%PYTHON_SOURCE%\test-results.xml" | ||
scp %SSH_SERVER%:"%REMOTE_PYTHON_DIR%test-results.xml" "%PYTHON_SOURCE%\test-results.xml" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"%PYTHON_SOURCE%\test-results.xml" should be "%PYTHON_SOURCE%test-results.xml"
I don't know if the extra slash will matter to scp or not without testing.
Tools/buildbot/test.bat
Outdated
@@ -37,7 +37,12 @@ set TEMP_ARGS=--temp %REMOTE_PYTHON_DIR%temp | |||
|
|||
set rt_args=%rt_opts% %dashU% -rwW --slowest --timeout=1200 --fail-env-changed %regrtest_args% %TEMP_ARGS% | |||
ssh %SSH_SERVER% "set TEMP=%REMOTE_PYTHON_DIR%temp& %REMOTE_PYTHON_DIR%PCbuild\rt.bat" %rt_args% |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe change this to
ssh %SSH_SERVER% "set TEMP=%REMOTE_PYTHON_DIR%temp & cd %REMOTE_PYTHON_DIR% & PCbuild\rt.bat" %rt_args%
Thanks @zooba for the PR 🌮🎉.. I'm working now to backport this PR to: 3.9. |
…ythonGH-21305) (cherry picked from commit 10772ec) Co-authored-by: Steve Dower <[email protected]>
GH-21382 is a backport of this pull request to the 3.9 branch. |
…H-21305) (cherry picked from commit 10772ec) Co-authored-by: Steve Dower <[email protected]>
https://bugs.python.org/issue41173