diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-26 21:15:47 +0100 |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-26 21:15:47 +0100 |
| commit | 9eea9d39c1bf0d01ef5ee00cc0c1bedde9c635a7 (patch) | |
| tree | 226b125febdc5329224ada436b683cd67aedbb04 /Tools/buildbot/clean-amd64.bat | |
| parent | c13d454e84aabe80fbc7763491bdfb3c924016fe (diff) | |
| download | cpython-git-9eea9d39c1bf0d01ef5ee00cc0c1bedde9c635a7.tar.gz | |
In the Windows clean script for buildbots, also clear the build dir
(so that stale test files, which can be very large, get wiped out)
Diffstat (limited to 'Tools/buildbot/clean-amd64.bat')
| -rw-r--r-- | Tools/buildbot/clean-amd64.bat | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat index 9fb35e9453..715805a7c1 100644 --- a/Tools/buildbot/clean-amd64.bat +++ b/Tools/buildbot/clean-amd64.bat @@ -1,7 +1,10 @@ @rem Used by the buildbot "clean" step. call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 -cd PCbuild @echo Deleting .pyc/.pyo files ... del /s Lib\*.pyc Lib\*.pyo +@echo Deleting test leftovers ... +rmdir /s /q build +cd PCbuild vcbuild /clean pcbuild.sln "Release|x64" vcbuild /clean pcbuild.sln "Debug|x64" +cd .. |
