[Python-checkins] r58133 - python/trunk/Tools/buildbot/buildmsi.bat

martin.v.loewis python-checkins at python.org
Thu Sep 13 11:59:00 CEST 2007


Author: martin.v.loewis
Date: Thu Sep 13 11:59:00 2007
New Revision: 58133

Modified:
   python/trunk/Tools/buildbot/buildmsi.bat
Log:
Add more automated actions.


Modified: python/trunk/Tools/buildbot/buildmsi.bat
==============================================================================
--- python/trunk/Tools/buildbot/buildmsi.bat	(original)
+++ python/trunk/Tools/buildbot/buildmsi.bat	Thu Sep 13 11:59:00 2007
@@ -1,10 +1,24 @@
 @rem Used by the buildbot "buildmsi" step.
+
 cmd /c Tools\buildbot\external.bat
+ at rem build release versions of things
 call "%VS71COMNTOOLS%vsvars32.bat"
+if not exist db-4.4.20\build_win32\release\libdb44s.lib (
+   devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Release /project db_static
+)
+
+ at rem build Python
 cmd /q/c Tools\buildbot\kill_python.bat
 devenv.com /useenv /build Release PCbuild\pcbuild.sln
+
+ at rem build the documentation
 bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp'
-"%ProgramFiles%\HTML Help Workshop\hhc.exe Doc\build\htmlhelp\pydoc.hhp
-cd Tools\msi
+"%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\pydoc.hhp
+
+ at rem buold the MSI file
+cd PC
+nmake /f icons.mak
+cd ..\Tools\msi
 del *.msi
+nmake /f msisupport.mak
 %HOST_PYTHON% msi.py


More information about the Python-checkins mailing list