cpython/Tools/buildbot/clean.bat
Zachary Ware 6f3bdc9484 Issue #21907: Partially revert changes to Windows buildbot scripts.
Trying to use run_tests.py for testing is more trouble than it's
worth; reverted to rt.bat.  Also cleaned up rt.bat a bit.

Trying to use hg purge to clean up after testing is also
error-prone, so we're back to using the build solution's Clean
targets.
2014-10-13 00:17:23 -05:00

33 lines
949 B
Batchfile

@echo off
rem Used by the buildbot "clean" step.
setlocal
set root=%~dp0..\..
set pcbuild=%root%\PCbuild
echo.Attempting to kill Pythons...
for %%k in (kill_python.exe
kill_python_d.exe
amd64\kill_python.exe
amd64\kill_python_d.exe
) do (
if exist "%pcbuild%\%%k" (
echo.Calling %pcbuild%\%%k...
"%pcbuild%\%%k"
)
)
if "%1" == "x64" (
set vcvars_target=x86_amd64
set platform_target=x64
) else (
set vcvars_target=x86
set platform_target=x86
)
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" %vcvars_target%
echo Deleting .pyc/.pyo files ...
del /s "%root%\Lib\*.pyc" "%root%\Lib\*.pyo"
echo Deleting test leftovers ...
rmdir /s /q "%root%\build"
msbuild /target:clean "%pcbuild%\pcbuild.sln" /p:Configuration=Release /p:PlatformTarget=%platform_target%
msbuild /target:clean "%pcbuild%\pcbuild.sln" /p:Configuration=Debug /p:PlatformTarget=%platform_target%