markus / Wix / build.bat @ f5d5b1ea
이력 | 보기 | 이력해설 | 다운로드 (7.87 KB)
1 | f5d5b1ea | taeseongkim | 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 | SET DEVENV="C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\devenv.com" |
||
6 | SET CANDLE="C:\Program Files (x86)\WiX Toolset v3.11\bin\candle.exe" |
||
7 | SET LIGHT="C:\Program Files (x86)\WiX Toolset v3.11\bin\light.exe" |
||
8 | |||
9 | SET SIGNTOOLPATH="C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64\signtool.exe" |
||
10 | SET SIGNPATH="c:\cert\www.doftech.co.kr.pfx" |
||
11 | |||
12 | Del Setup\*.wixobj |
||
13 | Del Setup\*.wixpdb |
||
14 | Del Setup\*.msi |
||
15 | Del Setupx86\*.wixobj |
||
16 | Del Setupx86\*.wixpdb |
||
17 | Del Setupx86\*.msi |
||
18 | Del Setup\FinalService\*.wixobj |
||
19 | Del Setup\FinalService\*.wixpdb |
||
20 | Del Setup\FinalService\*.msi |
||
21 | Del Setup\ConvertService\*.wixobj |
||
22 | Del Setup\ConvertService\*.wixpdb |
||
23 | Del Setup\ConvertService\*.msi |
||
24 | Del .\Setup\SNI\*.wixobj |
||
25 | Del .\Setup\SNI\*.wixpdb |
||
26 | Del .\Setup\SNI\*.msi |
||
27 | Del .\Setup\HyoSung\x86\*.wixobj |
||
28 | Del .\Setup\HyoSung\x86\*.wixpdb |
||
29 | Del .\Setup\HyoSung\x86\*.msi |
||
30 | Del .\Setup\HyoSung\x64\*.wixobj |
||
31 | Del .\Setup\HyoSung\x64\*.wixpdb |
||
32 | Del .\Setup\HyoSung\x64\*.msi |
||
33 | |||
34 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\*.exe" |
||
35 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Release\HyoSung\AnyCPU\*.exe" |
||
36 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Release\HyoSung\x86\*.exe" |
||
37 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setupx86\*.exe" |
||
38 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\FinalService\*.exe" |
||
39 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\ConvertService\*.exe" |
||
40 | |||
41 | %CANDLE% ".\MARKUS.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\ |
||
42 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
43 | %CANDLE% ".\MARKUSx86.wxs" -out .\Setupx86\ |
||
44 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
45 | %CANDLE% ".\FinalService.wxs" -out .\Setup\FinalService\ |
||
46 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
47 | %CANDLE% ".\ConvertService.wxs" -out .\Setup\ConvertService\ |
||
48 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
49 | %CANDLE% ".\MARKUS_daelim.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\ |
||
50 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
51 | %CANDLE% ".\MARKUS_daelim_test.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\ |
||
52 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
53 | %CANDLE% ".\FinalService_daelim.wxs" -out .\Setup\FinalService\ |
||
54 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
55 | %CANDLE% ".\Site\SNI\MARKUS.wxs" -out .\Setup\SNI\ |
||
56 | IF %ERRORLEVEL% NEQ 0 goto :ERRO |
||
57 | %CANDLE% ".\FinalService_SNI.wxs" -out .\Setup\SNI\ |
||
58 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
59 | %CANDLE% ".\MARKUS_HyoSung_x86.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\HyoSung\x86\ |
||
60 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
61 | %CANDLE% ".\MARKUS_HyoSung_x64.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\HyoSung\x64\ |
||
62 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
63 | |||
64 | %LIGHT% -out ".\Setup\MARKUS-%1.msi" ".\Setup\MARKUS.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
65 | REM %LIGHT% -out ".\Setupx86\MARKUSx86-%1.msi" ".\Setupx86\MARKUSx86.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
66 | %LIGHT% -out ".\Setup\FinalService\FinalService-%1.msi" ".\Setup\FinalService\FinalService.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
67 | %LIGHT% -out ".\Setup\ConvertService\ConvertService-%1.msi" ".\Setup\ConvertService\ConvertService.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
68 | %LIGHT% -out ".\Setup\MARKUS-Daelim-%1.msi" ".\Setup\MARKUS_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
69 | %LIGHT% -out ".\Setup\MARKUS-DaelimTest-%1.msi" ".\Setup\MARKUS_daelim_test.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
70 | %LIGHT% -out ".\Setup\FinalService\FinalService-Daelim-%1.msi" ".\Setup\FinalService\FinalService_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
71 | %LIGHT% -out ".\Setup\SNI\MARKUS-SNI-%1.msi" ".\Setup\SNI\MARKUS.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
72 | %LIGHT% -out ".\Setup\SNI\FinalService-SNI-%1.msi" ".\Setup\SNI\FinalService_SNI.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
73 | %LIGHT% -out ".\Setup\HyoSung\x86\MARKUS-HyoSung-x86-%1.msi" ".\Setup\HyoSung\x86\MARKUS_HyoSung_x86.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
74 | %LIGHT% -out ".\Setup\HyoSung\x64\MARKUS-HyoSung-x64-%1.msi" ".\Setup\HyoSung\x64\MARKUS_HyoSung_x64.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
75 | |||
76 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\*.msi" |
||
77 | REM %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setupx86\*.msi" |
||
78 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\FinalService\*.msi" |
||
79 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\ConvertService\*.msi" |
||
80 | REM SNI용 설치파일을 디지털 서명한다 |
||
81 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\SNI\*.msi" |
||
82 | |||
83 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\HyoSung\*.msi" |
||
84 | |||
85 | REM deploy artifacts |
||
86 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUS-%1.msi" -T ".\Setup\MARKUS-%1.msi" |
||
87 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
88 | REM %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUSx86-%1.msi" -T ".\Setupx86\MARKUSx86-%1.msi" |
||
89 | REM IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
90 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUS-Daelim-%1.msi" -T ".\Setup\MARKUS-Daelim-%1.msi" |
||
91 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
92 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUS-DaelimTest-%1.msi" -T ".\Setup\MARKUS-DaelimTest-%1.msi" |
||
93 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
94 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/FinalService/FinalService-%1.msi" -T ".\Setup\FinalService\FinalService-%1.msi" |
||
95 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
96 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/FinalService/FinalService-Daelim-%1.msi" -T ".\Setup\FinalService\FinalService-Daelim-%1.msi" |
||
97 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
98 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/ConvertService/ConvertService-%1.msi" -T ".\Setup\ConvertService\ConvertService-%1.msi" |
||
99 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
100 | |||
101 | REM SNI용 설치 파일들을 Artifactory에 배포한다 |
||
102 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/SNI/MARKUS-SNI-%1.msi" -T ".\Setup\SNI\MARKUS-SNI-%1.msi" |
||
103 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
104 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/SNI/FinalService-SNI-%1.msi" -T ".\Setup\SNI\FinalService-SNI-%1.msi" |
||
105 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
106 | |||
107 | REM HyoSung용 설치 파일들을 Artifactory에 배포한다 |
||
108 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/HyoSung/x64/MARKUS-HyoSung-x64-%1.msi" -T ".\Setup\HyoSung\x64\MARKUS-HyoSung-x64-%1.msi" |
||
109 | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/HyoSung/x86/MARKUS-HyoSung-x86-%1.msi" -T ".\Setup\HyoSung\x86\MARKUS-HyoSung-x86-%1.msi" |
||
110 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
111 | |||
112 | :EOF |
||
113 | ECHO process completed |
||
114 | exit |
||
115 | |||
116 | :ERROR |
||
117 | exit 1 |