mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
699 B
25 lines
699 B
@echo off
|
|
setlocal enableextensions
|
|
|
|
set SSCMD="F:\Program Files\Microsoft Visual Studio\Common\Vss\Win32\ss"
|
|
set BUILDNUM=%1
|
|
if '%BUILDNUM%' == '' goto Usage
|
|
|
|
set DESTDIR=\\Mcsvss\Beta\DMA\DMA6.1\Build%BUILDNUM%
|
|
|
|
if exist c:\temp\ssreport.txt del /f c:\temp\ssreport.txt
|
|
set /A PREVBUILD=%BUILDNUM% - 1
|
|
%SSCMD% History "$/Dev/DMA" -R "-VLDMA 6.1 (Build %BUILDNUM%)~LDMA 6.1 (Build %PREVBUILD%)" -O@c:\temp\ssreport.txt
|
|
|
|
if exist c:\temp\BuildLog.txt del /f c:\temp\BuildLog.txt
|
|
ssreport.pl "c:\temp\ssreport.txt c:\temp\ea_pr.txt c:\temp\BuildLog.txt"
|
|
|
|
if exist c:\temp\BuildLog.txt copy c:\temp\BuildLog.txt %DESTDIR%
|
|
|
|
goto End
|
|
|
|
:Usage
|
|
echo Usage: DmaCreateBuildLog.cmd BuildNumber
|
|
|
|
:End
|
|
endlocal
|