Update runall.bat to the latest Windows build system. (#18571)

This commit is contained in:
Stefan Krah 2020-02-20 19:07:31 +01:00 committed by GitHub
parent c0cb8beb38
commit 9b833e00e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 77 additions and 59 deletions

View File

@ -7,105 +7,123 @@ cd ..\..\..\
echo.
echo # ======================================================================
echo # Building Python
echo # Building Python (Debug^|x64)
echo # ======================================================================
echo.
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x64
msbuild /noconsolelogger /target:clean PCbuild\pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x64
msbuild /noconsolelogger /target:clean PCbuild\pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x64
msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Release /p:Platform=x64
msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Debug /p:Platform=x64
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x86
msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Release /p:Platform=Win32
msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Debug /p:Platform=Win32
echo.
echo.
call .\Tools\buildbot\clean.bat
call .\Tools\buildbot\build.bat -c Debug -p x64
echo.
echo # ======================================================================
echo # test_decimal: platform=x64
echo # ======================================================================
echo.
cd PCbuild\amd64
echo # ==================== refleak tests =======================
echo.
python_d.exe -m test -uall -R 2:2 test_decimal
echo.
echo.
echo # ==================== regular tests =======================
echo.
python.exe -m test -uall test_decimal
echo.
echo.
cd ..
echo.
echo # ======================================================================
echo # test_decimal: platform=x86
echo # platform=Debug^|x64
echo # ======================================================================
echo.
echo # ==================== refleak tests =======================
echo.
python_d.exe -m test -uall -R 2:2 test_decimal
call python.bat -m test -uall -R 3:3 test_decimal
echo.
echo.
echo # ==================== regular tests =======================
echo.
python.exe -m test -uall test_decimal
call python.bat -m test -uall test_decimal
echo.
echo.
echo # ==================== deccheck =======================
echo.
call python.bat .\Modules\_decimal\tests\deccheck.py
echo.
echo.
cd amd64
echo.
echo # ======================================================================
echo # deccheck: platform=x64
echo # Building Python (Release^|x64)
echo # ======================================================================
echo.
echo # ==================== debug build =======================
echo.
python_d.exe ..\..\Modules\_decimal\tests\deccheck.py
echo.
echo.
echo # =================== release build ======================
echo.
python.exe ..\..\Modules\_decimal\tests\deccheck.py
echo.
echo.
cd ..
call .\Tools\buildbot\clean.bat
call .\Tools\buildbot\build.bat -c Release -p x64
echo.
echo # ======================================================================
echo # deccheck: platform=x86
echo # platform=Release^|x64
echo # ======================================================================
echo.
echo.
echo # ==================== debug build =======================
echo # ==================== regular tests =======================
echo.
python_d.exe ..\Modules\_decimal\tests\deccheck.py
call python.bat -m test -uall test_decimal
echo.
echo.
echo # =================== release build ======================
echo # ==================== deccheck =======================
echo.
python.exe ..\Modules\_decimal\tests\deccheck.py
call python.bat .\Modules\_decimal\tests\deccheck.py
echo.
echo.
cd ..\Modules\_decimal\tests
echo.
echo # ======================================================================
echo # Building Python (Debug^|Win32)
echo # ======================================================================
echo.
call .\Tools\buildbot\clean.bat
call Tools\buildbot\build.bat -c Debug -p Win32
echo.
echo # ======================================================================
echo # platform=Debug^|Win32
echo # ======================================================================
echo.
echo # ==================== refleak tests =======================
echo.
call python.bat -m test -uall -R 3:3 test_decimal
echo.
echo.
echo # ==================== regular tests =======================
echo.
call python.bat -m test -uall test_decimal
echo.
echo.
echo # ==================== deccheck =======================
echo.
call python.bat .\Modules\_decimal\tests\deccheck.py
echo.
echo.
echo.
echo # ======================================================================
echo # Building Python (Release^|Win32)
echo # ======================================================================
echo.
call .\Tools\buildbot\clean.bat
call .\Tools\buildbot\build.bat -c Release -p Win32
echo.
echo # ======================================================================
echo # platform=Release^|Win32
echo # ======================================================================
echo.
echo # ==================== regular tests =======================
echo.
call python.bat -m test -uall test_decimal
echo.
echo.
echo # ==================== deccheck =======================
echo.
call python.bat .\Modules\_decimal\tests\deccheck.py
echo.
echo.