From 92584a662a144cf4fe8d025bec475dcdd5cf14fd Mon Sep 17 00:00:00 2001 From: Barak Hoffer Date: Mon, 12 Oct 2015 15:22:21 +0300 Subject: [PATCH] build from c&c batch for windows build --- build_env/build_from_cc.bat | 41 +++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 build_env/build_from_cc.bat diff --git a/build_env/build_from_cc.bat b/build_env/build_from_cc.bat new file mode 100644 index 000000000..6b1fe10ea --- /dev/null +++ b/build_env/build_from_cc.bat @@ -0,0 +1,41 @@ +@Echo Off +Set _Delay=10 +Set _Monitor=Z:\ +Set _Base=%temp%\BaselineState.dir +Set _Chck=%temp%\ChkState.dir +Set _OS=6 +Set _SourceStore=C:\Code\monkey\chaos_monkey +Set _OutputName=%1 +Set _BinariesOut=X:\ +If "%_OutputName%"=="" Exit +Ver|Findstr /I /C:"Version 5">Nul +If %Errorlevel%==0 Set _OS=5 +Echo Starting source monitor, output is %_OutputName% +:_StartMon +Call :_SetBaseline "%_Base%" "%_Monitor%" +:_MonLoop +If %_OS%==5 (Ping 127.0.0.1 -n 1 %_Delay%>Nul) Else Timeout %_Delay%>Nul +Call :_SetBaseline "%_Chck%" "%_Monitor%" +FC /A /L "%_Base%" "%_Chck%">Nul +If %ErrorLevel%==0 Goto _MonLoop +Echo Change Detected, Compiling... +rmdir /s /q "%_SourceStore%" +mkdir "%_SourceStore%" +xcopy /s /q "%_Monitor%" "%_SourceStore%" +pushd "%_SourceStore%" +cmd /c build_windows.bat +copy /y "dist\monkey.exe" "%_BinariesOut%%_OutputName%" +popd +echo Waiting for changes... +Goto :_StartMon +::::::::::::::::::::::::::::::::::::::::::::::::::: +:: Subroutine +::::::::::::::::::::::::::::::::::::::::::::::::::: +:_SetBaseline +If Exist "%temp%\tempfmstate.dir" Del "%temp%\tempfmstate.dir" +For /F "Tokens=* Delims=" %%I In ('Dir /S "%~2"') Do ( +Set _Last=%%I +>>"%temp%\tempfmstate.dir" Echo.%%I +) +>"%~1" Findstr /V /C:"%_Last%" "%temp%\tempfmstate.dir" +Goto :EOF \ No newline at end of file