diff options
author | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 14:32:40 +0100 |
---|---|---|
committer | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 14:32:40 +0100 |
commit | 779aca60511055832e776ab4a6299a2b7e049a16 (patch) | |
tree | dfb031e9bd01b25ab0199286cf6e660f26489817 /Nightbuild2008.cmd | |
parent | Merge branch 'master' into cmake (diff) | |
parent | Merge branch 'master', remote-tracking branch 'upstream/master' (diff) | |
download | cuberite-779aca60511055832e776ab4a6299a2b7e049a16.tar cuberite-779aca60511055832e776ab4a6299a2b7e049a16.tar.gz cuberite-779aca60511055832e776ab4a6299a2b7e049a16.tar.bz2 cuberite-779aca60511055832e776ab4a6299a2b7e049a16.tar.lz cuberite-779aca60511055832e776ab4a6299a2b7e049a16.tar.xz cuberite-779aca60511055832e776ab4a6299a2b7e049a16.tar.zst cuberite-779aca60511055832e776ab4a6299a2b7e049a16.zip |
Diffstat (limited to 'Nightbuild2008.cmd')
-rw-r--r-- | Nightbuild2008.cmd | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Nightbuild2008.cmd b/Nightbuild2008.cmd index ad0b415ba..cbd23692b 100644 --- a/Nightbuild2008.cmd +++ b/Nightbuild2008.cmd @@ -1,17 +1,20 @@ @echo off :: Nightbbuild2008.cmd :: This script is run every night to produce a new version of MCServer, backup its PDB files and upload the packages to web. -:: These sub-scripts are used: -:: - UploadVersion.ftp FTP command template for uploading the version to the web :: When run without parameters, this script pauses at the end and waits for a keypress. :: To run in an automated scheduler, add any parameter to disable waiting for a keystroke :: +:: The sript creates a symbol store (a database of PDB files) that can be used as a single entry in MSVC's symbol path, +:: then any executable / crashdump built by this script can be debugged and its symbols will be found automatically by MSVC, +:: without the users needing to specify the build version or anything. +:: In order to support pruning the symstore, a per-month store is created, so that old months can be removed when no longer needed. +:: :: This script expects a few tools on specific paths, you can pass the correct paths for your system as env vars "zip" and "vc" :: This script assumes that "git", "symstore" and "touch" are available on PATH. :: git comes from msysgit :: symstore comes from Microsoft's Debugging Tools for Windows :: touch comes from unxtools -:: This script is locale-dependent +:: This script is locale-dependent, because it parses the output of "time" and "date" shell commands :: 7-zip executable (by default it should be on PATH): @@ -45,9 +48,9 @@ echo Performing nightbuild of MC-Server set DONOTPAUSE=y :: Update the sources to the latest revision: -del src\Bindings.cpp -del src\Bindings.h -git checkout -- src\Bindings.* +del src\Bindings\Bindings.cpp +del src\Bindings\Bindings.h +git checkout -- src\Bindings\Bindings.* git pull if errorlevel 1 goto haderror |