diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-12 09:50:39 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-12 09:50:39 (GMT) |
commit | d39ab5bf9709a2a036186a0331eb445a40d6b86e (patch) | |
tree | 5a68ed2ee4b6940ae1bbefdf73a0840f977eccad /Tools | |
parent | 539056aca0ac99316b5b3f0ded07839b1fcf2bee (diff) | |
download | cpython-d39ab5bf9709a2a036186a0331eb445a40d6b86e.zip cpython-d39ab5bf9709a2a036186a0331eb445a40d6b86e.tar.gz cpython-d39ab5bf9709a2a036186a0331eb445a40d6b86e.tar.bz2 |
Move buildbot scripts to Tools/buildbot.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/build.bat | 3 | ||||
-rw-r--r-- | Tools/buildbot/clean.bat | 3 | ||||
-rw-r--r-- | Tools/buildbot/test.bat | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat new file mode 100644 index 0000000..aa019a9 --- /dev/null +++ b/Tools/buildbot/build.bat @@ -0,0 +1,3 @@ +@rem Used by the buildbot "compile" step. +call "%VS71COMNTOOLS%vsvars32.bat" +devenv.com /build Debug PCbuild\pcbuild.sln diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat new file mode 100644 index 0000000..d28262e --- /dev/null +++ b/Tools/buildbot/clean.bat @@ -0,0 +1,3 @@ +@rem Used by the buildbot "clean" step. +call "%VS71COMNTOOLS%vsvars32.bat" +devenv.com /clean Debug PCbuild\pcbuild.sln diff --git a/Tools/buildbot/test.bat b/Tools/buildbot/test.bat new file mode 100644 index 0000000..840b44b --- /dev/null +++ b/Tools/buildbot/test.bat @@ -0,0 +1,3 @@ +@rem Used by the buildbot "test" step. +cd PCbuild +call rt.bat -d -uall -rw |