[Python-checkins] r55854 - python/trunk/Tools/buildbot/build-amd64.bat python/trunk/Tools/buildbot/clean-amd64.bat python/trunk/Tools/buildbot/test-amd64.bat

thomas.heller python-checkins at python.org
Sun Jun 10 17:59:19 CEST 2007


Author: thomas.heller
Date: Sun Jun 10 17:59:17 2007
New Revision: 55854

Added:
   python/trunk/Tools/buildbot/build-amd64.bat   (contents, props changed)
   python/trunk/Tools/buildbot/clean-amd64.bat   (contents, props changed)
   python/trunk/Tools/buildbot/test-amd64.bat   (contents, props changed)
Log:

First version of build scripts for Windows/AMD64 (no external
components are built yet, and 'kill_python' is disabled).


Added: python/trunk/Tools/buildbot/build-amd64.bat
==============================================================================
--- (empty file)
+++ python/trunk/Tools/buildbot/build-amd64.bat	Sun Jun 10 17:59:17 2007
@@ -0,0 +1,5 @@
+ at rem Used by the buildbot "compile" step.
+REM cmd /c Tools\buildbot\external.bat
+call "%VS71COMNTOOLS%vsvars32.bat"
+REM cmd /q/c Tools\buildbot\kill_python.bat
+devenv.com /build ReleaseAMD64 PCbuild\pcbuild.sln

Added: python/trunk/Tools/buildbot/clean-amd64.bat
==============================================================================
--- (empty file)
+++ python/trunk/Tools/buildbot/clean-amd64.bat	Sun Jun 10 17:59:17 2007
@@ -0,0 +1,6 @@
+ at rem Used by the buildbot "clean" step.
+REM call "%VS71COMNTOOLS%vsvars32.bat"
+cd PCbuild
+ at echo Deleting .pyc/.pyo files ...
+python.exe rmpyc.py
+devenv.com /clean ReleaseAMD64 pcbuild.sln

Added: python/trunk/Tools/buildbot/test-amd64.bat
==============================================================================
--- (empty file)
+++ python/trunk/Tools/buildbot/test-amd64.bat	Sun Jun 10 17:59:17 2007
@@ -0,0 +1,3 @@
+ at rem Used by the buildbot "test" step.
+cd PCbuild
+call rt.bat -q -uall -rw


More information about the Python-checkins mailing list