markus / build.bat @ 8d503787
이력 | 보기 | 이력해설 | 다운로드 (2.13 KB)
1 |
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 |
|
16 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\*.exe" |
17 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\ConvertService\*.exe" |
18 |
|
19 |
%CANDLE% ".\MARKUS_pemss.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\ |
20 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
21 |
%CANDLE% ".\ConvertService.wxs" -out .\Setup\ConvertService\ |
22 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
23 |
|
24 |
%LIGHT% -out ".\Setup\MARKUS_PEMSS-%1.msi" ".\Setup\MARKUS_pemss.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
25 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
26 |
%LIGHT% -out ".\Setup\ConvertService\ConvertService-%1.msi" ".\Setup\ConvertService\ConvertService.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
27 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
28 |
|
29 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\*.msi" |
30 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\ConvertService\*.msi" |
31 |
|
32 |
REM deploy artifacts |
33 |
..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS_PEMSS/Setup/MARKUS_PEMSS-%1.msi" -T ".\Setup\MARKUS_PEMSS-%1.msi" |
34 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
35 |
..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/MARKUS_PEMSS/Setup/ConvertService/ConvertService-%1.msi" -T ".\Setup\ConvertService\ConvertService-%1.msi" |
36 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
37 |
|
38 |
:EOF |
39 |
ECHO process completed |
40 |
exit |
41 |
|
42 |
:ERROR |
43 |
exit 1 |