17 lines
660 B
Batchfile
17 lines
660 B
Batchfile
|
|
@rem A batch file to kick off the build script. This sets up the env using
|
||
|
|
@rem Microsoft's vsvars.bat script.
|
||
|
|
|
||
|
|
@echo "Starting Windows build..." > c:\temp\WinIOnUBuild.log
|
||
|
|
|
||
|
|
@rem Make *sure* the service is stopped!
|
||
|
|
net stop ionuservices >> c:\temp\WinIOnUBuild.log 2>&1
|
||
|
|
|
||
|
|
net use z: \\psf\Home >> c:\temp\WinIOnUBuild.log 2>&1
|
||
|
|
|
||
|
|
@if "%VSINSTALLDIR%"=="" call "%VS110COMNTOOLS%vsvars32.bat"
|
||
|
|
bash -c "/home/builder/Build/utils/mbci.sh /home/builder/Build/QA --build trunk --propfile build-win32.properties --mailto rd@ionu.com" >> c:\temp\WinIOnUBuild.log 2>&1
|
||
|
|
|
||
|
|
@rem Make *sure* the service is stopped!
|
||
|
|
net stop ionuservices >> c:\temp\WinIOnUBuild.log 2>&1
|
||
|
|
\k
|