개정판 b6c25f7a
issue #000: add ConvertService.wxs
Change-Id: I3b3d8147a22f267972433b5c4fc41713491f2dab
build.bat | ||
---|---|---|
15 | 15 |
Del Setup\FinalService\*.wixobj |
16 | 16 |
Del Setup\FinalService\*.wixpdb |
17 | 17 |
Del Setup\FinalService\*.msi |
18 |
Del Setup\ConvertService\*.wixobj |
|
19 |
Del Setup\ConvertService\*.wixpdb |
|
20 |
Del Setup\ConvertService\*.msi |
|
18 | 21 |
|
19 | 22 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\*.exe" |
20 | 23 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\FinalService\*.exe" |
24 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\ConvertService\*.exe" |
|
21 | 25 |
|
22 | 26 |
%CANDLE% ".\MARKUS.wxs" -out .\Setup\ |
23 | 27 |
%CANDLE% ".\FinalService.wxs" -out .\Setup\FinalService\ |
28 |
%CANDLE% ".\ConvertService.wxs" -out .\Setup\ConvertService\ |
|
24 | 29 |
%CANDLE% ".\MARKUS_daelim.wxs" -out .\Setup\ |
25 | 30 |
%CANDLE% ".\MARKUS_daelim_test.wxs" -out .\Setup\ |
26 | 31 |
%CANDLE% ".\FinalService_daelim.wxs" -out .\Setup\FinalService\ |
... | ... | |
28 | 33 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
29 | 34 |
%LIGHT% -out ".\Setup\MARKUS-%1.msi" ".\Setup\MARKUS.wixobj" -ext WixUIExtension -ext WixUtilExtension |
30 | 35 |
%LIGHT% -out ".\Setup\FinalService\FinalService-%1.msi" ".\Setup\FinalService\FinalService.wixobj" -ext WixUIExtension -ext WixUtilExtension |
36 |
%LIGHT% -out ".\Setup\ConvertService\ConvertService-%1.msi" ".\Setup\ConvertService\ConvertService.wixobj" -ext WixUIExtension -ext WixUtilExtension |
|
31 | 37 |
%LIGHT% -out ".\Setup\MARKUS-Daelim-%1.msi" ".\Setup\MARKUS_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension |
32 | 38 |
%LIGHT% -out ".\Setup\MARKUS-DaelimTest-%1.msi" ".\Setup\MARKUS_daelim_test.wixobj" -ext WixUIExtension -ext WixUtilExtension |
33 | 39 |
%LIGHT% -out ".\Setup\FinalService\FinalService-Daelim-%1.msi" ".\Setup\FinalService\FinalService_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension |
... | ... | |
35 | 41 |
|
36 | 42 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\*.msi" |
37 | 43 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\FinalService\*.msi" |
44 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\ConvertService\*.msi" |
|
38 | 45 |
|
39 | 46 |
REM deploy artifacts |
40 | 47 |
..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUS-%1.msi" -T ".\Setup\MARKUS-%1.msi" |
48 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
|
41 | 49 |
..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUS-Daelim-%1.msi" -T ".\Setup\MARKUS-Daelim-%1.msi" |
50 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
|
42 | 51 |
..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/MARKUS-DaelimTest-%1.msi" -T ".\Setup\MARKUS-DaelimTest-%1.msi" |
52 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
|
43 | 53 |
..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/FinalService/FinalService-%1.msi" -T ".\Setup\FinalService\FinalService-%1.msi" |
54 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
|
44 | 55 |
..\curl.exe -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" |
56 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
|
57 |
..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS/Setup/ConvertService/ConvertService-%1.msi" -T ".\Setup\ConvertService\ConvertService-%1.msi" |
|
58 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
|
59 |
|
|
45 | 60 |
:EOF |
46 | 61 |
ECHO process completed |
47 | 62 |
exit |
내보내기 Unified diff