hytos / packagex86.bat @ c64c4af6
이력 | 보기 | 이력해설 | 다운로드 (1.18 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 CANDLE="C:\Program Files (x86)\WiX Toolset v3.11\bin\candle.exe" |
6 |
SET LIGHT="C:\Program Files (x86)\WiX Toolset v3.11\bin\light.exe" |
7 |
SET SIGNTOOLPATH="C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64\signtool.exe" |
8 |
SET SIGNPATH="c:\cert\www.doftech.co.kr.pfx" |
9 |
|
10 |
Del Setup\*.wixpdb |
11 |
Del Setup\*.wixobj |
12 |
Del Setup\*.msi |
13 |
|
14 |
REM %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\HYTOS\Setup\*.exe" |
15 |
|
16 |
%CANDLE% ".\HYTOSx86.wxs" -out .\Setup\ |
17 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
18 |
%LIGHT% -out ".\Setup\HYTOS-%1x86.msi" ".\Setup\HYTOSx86.wixobj" -ext WixUIExtension -ext WixUtilExtension |
19 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
20 |
|
21 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\HYTOS\Setup\*.msi" |
22 |
|
23 |
REM deploy artifacts |
24 |
..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/HYTOS/Setup/HYTOS-%1x86.msi" -T ".\Setup\HYTOS-%1x86.msi" |
25 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
26 |
|
27 |
:EOF |
28 |
ECHO process completed |
29 |
exit |
30 |
|
31 |
:ERROR |
32 |
exit 1 |