markus / build.bat @ 1c2e8a82
이력 | 보기 | 이력해설 | 다운로드 (2.38 KB)
1 | 774ce153 | djkim | SET yyyymmdd=%DATE:~0,4%-%DATE:~5,2%-%DATE:~8,2% |
---|---|---|---|
2 | SET hhmmss=%TIME:~0,2%-%TIME:~3,2%-%TIME:~6,2% |
||
3 | SET hhmmss=%hhmmss: =0% |
||
4 | |||
5 | 1c2e8a82 | humkyung | SET CURL="C:\Windows\System32\curl.exe" |
6 | 774ce153 | djkim | SET DEVENV="C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\devenv.com" |
7 | SET CANDLE="C:\Program Files (x86)\WiX Toolset v3.11\bin\candle.exe" |
||
8 | SET LIGHT="C:\Program Files (x86)\WiX Toolset v3.11\bin\light.exe" |
||
9 | |||
10 | SET SIGNTOOLPATH="C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64\signtool.exe" |
||
11 | SET SIGNPATH="c:\cert\www.doftech.co.kr.pfx" |
||
12 | |||
13 | Del Setup\*.wixobj |
||
14 | Del Setup\*.wixpdb |
||
15 | Del Setup\*.msi |
||
16 | 09f07393 | humkyung | Del Setup\FinalService\*.wixobj |
17 | Del Setup\FinalService\*.wixpdb |
||
18 | Del Setup\FinalService\*.msi |
||
19 | 774ce153 | djkim | |
20 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\*.exe" |
||
21 | 09f07393 | humkyung | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\FinalService\*.exe" |
22 | 774ce153 | djkim | |
23 | %CANDLE% ".\MARKUS.wxs" -out .\Setup\ |
||
24 | 8b0d8693 | humkyung | %CANDLE% ".\FinalService.wxs" -out .\Setup\FinalService\ |
25 | 22c025b3 | djkim | %CANDLE% ".\MARKUS_daelim.wxs" -out .\Setup\ |
26 | 0ac88c70 | djkim | %CANDLE% ".\MARKUS_daelim_test.wxs" -out .\Setup\ |
27 | 22c025b3 | djkim | %CANDLE% ".\FinalService_daelim.wxs" -out .\Setup\FinalService\ |
28 | 8b0d8693 | humkyung | |
29 | 774ce153 | djkim | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
30 | %LIGHT% -out ".\Setup\MARKUS-%1.msi" ".\Setup\MARKUS.wixobj" -ext WixUIExtension -ext WixUtilExtension |
||
31 | 09f07393 | humkyung | %LIGHT% -out ".\Setup\FinalService\FinalService-%1.msi" ".\Setup\FinalService\FinalService.wixobj" -ext WixUIExtension -ext WixUtilExtension |
32 | 22c025b3 | djkim | %LIGHT% -out ".\Setup\MARKUS-Daelim-%1.msi" ".\Setup\MARKUS_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension |
33 | 0ac88c70 | djkim | %LIGHT% -out ".\Setup\MARKUS-DaelimTest-%1.msi" ".\Setup\MARKUS_daelim_test.wixobj" -ext WixUIExtension -ext WixUtilExtension |
34 | 22c025b3 | djkim | %LIGHT% -out ".\Setup\FinalService\FinalService-Daelim-%1.msi" ".\Setup\FinalService\FinalService_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension |
35 | 774ce153 | djkim | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
36 | |||
37 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\*.msi" |
||
38 | 09f07393 | humkyung | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\FinalService\*.msi" |
39 | 774ce153 | djkim | |
40 | 1c2e8a82 | humkyung | %CURL% -uadmin:dof1073# -T ".\Setup\MARKUS-%1.msi" "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/MARKUS-%1.msi" |
41 | 4d1ae05f | humkyung | |
42 | 774ce153 | djkim | :EOF |
43 | ECHO process completed |
||
44 | exit |
||
45 | |||
46 | :ERROR |
||
47 | 1c2e8a82 | humkyung | exit 1 |