markus / build.bat @ 79a11ea2
이력 | 보기 | 이력해설 | 다운로드 (7.43 KB)
1 | 623a85ce | humkyung | SET yyyymmdd=%DATE:~0,4%-%DATE:~5,2%-%DATE:~8,2% |
---|---|---|---|
2 | 774ce153 | djkim | 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 | 3c71b3a5 | taeseongkim | Del Setupx86\*.wixobj |
16 | Del Setupx86\*.wixpdb |
||
17 | Del Setupx86\*.msi |
||
18 | 09f07393 | humkyung | Del Setup\FinalService\*.wixobj |
19 | Del Setup\FinalService\*.wixpdb |
||
20 | Del Setup\FinalService\*.msi |
||
21 | b6c25f7a | humkyung | Del Setup\ConvertService\*.wixobj |
22 | Del Setup\ConvertService\*.wixpdb |
||
23 | Del Setup\ConvertService\*.msi |
||
24 | 38df51fd | humkyung | Del .\Setup\SNI\*.wixobj |
25 | Del .\Setup\SNI\*.wixpdb |
||
26 | Del .\Setup\SNI\*.msi |
||
27 | bd89069b | taeseongkim | Del .\Setup\HyoSung\*.wixobj |
28 | Del .\Setup\HyoSung\*.wixpdb |
||
29 | Del .\Setup\HyoSung\*.msi |
||
30 | 774ce153 | djkim | |
31 | 38df51fd | humkyung | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\*.exe" |
32 | bd89069b | taeseongkim | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\HyoSung\*.exe" |
33 | 38df51fd | humkyung | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setupx86\*.exe" |
34 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\FinalService\*.exe" |
||
35 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\ConvertService\*.exe" |
||
36 | 774ce153 | djkim | |
37 | b21627cf | djkim | %CANDLE% ".\MARKUS.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\ |
38 | f3b4d247 | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
39 | 3c71b3a5 | taeseongkim | %CANDLE% ".\MARKUSx86.wxs" -out .\Setupx86\ |
40 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
41 | 8b0d8693 | humkyung | %CANDLE% ".\FinalService.wxs" -out .\Setup\FinalService\ |
42 | f3b4d247 | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
43 | b6c25f7a | humkyung | %CANDLE% ".\ConvertService.wxs" -out .\Setup\ConvertService\ |
44 | f3b4d247 | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
45 | 0dbf8abb | djkim | %CANDLE% ".\MARKUS_daelim.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\ |
46 | f3b4d247 | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
47 | 0dbf8abb | djkim | %CANDLE% ".\MARKUS_daelim_test.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\ |
48 | f3b4d247 | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
49 | 22c025b3 | djkim | %CANDLE% ".\FinalService_daelim.wxs" -out .\Setup\FinalService\ |
50 | f3b4d247 | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
51 | 38df51fd | humkyung | %CANDLE% ".\Site\SNI\MARKUS.wxs" -out .\Setup\SNI\ |
52 | IF %ERRORLEVEL% NEQ 0 goto :ERRO |
||
53 | %CANDLE% ".\FinalService_SNI.wxs" -out .\Setup\SNI\ |
||
54 | 774ce153 | djkim | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
55 | 01d5bc65 | taeseongkim | %CANDLE% ".\MARKUS_HyoSung_32Bit.wxs" -arch x86 -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\HyoSung\ |
56 | 79a11ea2 | taeseongkim | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
57 | 01d5bc65 | taeseongkim | %CANDLE% ".\MARKUS_HyoSung_64Bit.wxs" -arch x64 -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\HyoSung\ |
58 | 14bbabc0 | taeseongkim | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
59 | 44ea6121 | humkyung | |
60 | 3c71b3a5 | taeseongkim | %LIGHT% -out ".\Setup\MARKUS-%1.msi" ".\Setup\MARKUS.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
61 | REM %LIGHT% -out ".\Setupx86\MARKUSx86-%1.msi" ".\Setupx86\MARKUSx86.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
62 | %LIGHT% -out ".\Setup\FinalService\FinalService-%1.msi" ".\Setup\FinalService\FinalService.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
63 | %LIGHT% -out ".\Setup\ConvertService\ConvertService-%1.msi" ".\Setup\ConvertService\ConvertService.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
64 | %LIGHT% -out ".\Setup\MARKUS-Daelim-%1.msi" ".\Setup\MARKUS_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
65 | %LIGHT% -out ".\Setup\MARKUS-DaelimTest-%1.msi" ".\Setup\MARKUS_daelim_test.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
66 | %LIGHT% -out ".\Setup\FinalService\FinalService-Daelim-%1.msi" ".\Setup\FinalService\FinalService_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
67 | 38df51fd | humkyung | %LIGHT% -out ".\Setup\SNI\MARKUS-SNI-%1.msi" ".\Setup\SNI\MARKUS.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
68 | %LIGHT% -out ".\Setup\SNI\FinalService-SNI-%1.msi" ".\Setup\SNI\FinalService_SNI.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
69 | 79a11ea2 | taeseongkim | %LIGHT% -out ".\Setup\HyoSung\MARKUS-HyoSung-%1.msi" ".\Setup\HyoSung\MARKUS_HyoSung_32Bit.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
70 | %LIGHT% -out ".\Setup\HyoSung\MARKUS-HyoSung-%1.msi" ".\Setup\HyoSung\MARKUS_HyoSung_64Bit.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
||
71 | 774ce153 | djkim | |
72 | 38df51fd | humkyung | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\*.msi" |
73 | 3c71b3a5 | taeseongkim | REM %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setupx86\*.msi" |
74 | 38df51fd | humkyung | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\FinalService\*.msi" |
75 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\ConvertService\*.msi" |
||
76 | REM SNI용 설치파일을 디지털 서명한다 |
||
77 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\SNI\*.msi" |
||
78 | 774ce153 | djkim | |
79 | 14bbabc0 | taeseongkim | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\HyoSung\*.msi" |
80 | |||
81 | 6c661cad | humkyung | REM deploy artifacts |
82 | d1be84a0 | humkyung | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUS-%1.msi" -T ".\Setup\MARKUS-%1.msi" |
83 | b6c25f7a | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
84 | d1be84a0 | humkyung | REM %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUSx86-%1.msi" -T ".\Setupx86\MARKUSx86-%1.msi" |
85 | 3c71b3a5 | taeseongkim | REM IF %ERRORLEVEL% NEQ 0 goto :ERROR |
86 | d1be84a0 | humkyung | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUS-Daelim-%1.msi" -T ".\Setup\MARKUS-Daelim-%1.msi" |
87 | b6c25f7a | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
88 | d1be84a0 | humkyung | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUS-DaelimTest-%1.msi" -T ".\Setup\MARKUS-DaelimTest-%1.msi" |
89 | b6c25f7a | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
90 | d1be84a0 | humkyung | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/FinalService/FinalService-%1.msi" -T ".\Setup\FinalService\FinalService-%1.msi" |
91 | b6c25f7a | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
92 | d1be84a0 | humkyung | %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" |
93 | b6c25f7a | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
94 | d1be84a0 | humkyung | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/ConvertService/ConvertService-%1.msi" -T ".\Setup\ConvertService\ConvertService-%1.msi" |
95 | b6c25f7a | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
96 | |||
97 | 38df51fd | humkyung | REM SNI용 설치 파일들을 Artifactory에 배포한다 |
98 | d1be84a0 | humkyung | %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" |
99 | 38df51fd | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
100 | d1be84a0 | humkyung | %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" |
101 | 38df51fd | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
102 | |||
103 | 14bbabc0 | taeseongkim | REM HyoSung용 설치 파일들을 Artifactory에 배포한다 |
104 | bd89069b | taeseongkim | %CURL% -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/HyoSung/MARKUS-HyoSung-%1.msi" -T ".\Setup\HyoSung\MARKUS-HyoSung-%1.msi" |
105 | 14bbabc0 | taeseongkim | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
106 | |||
107 | 774ce153 | djkim | :EOF |
108 | ECHO process completed |
||
109 | exit |
||
110 | |||
111 | :ERROR |
||
112 | 1c2e8a82 | humkyung | exit 1 |