hytos / package.bat @ d327a608
이력 | 보기 | 이력해설 | 다운로드 (1.52 KB)
1 | 5183a15f | humkyung | 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 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\ID2\Setup\*.exe" |
||
15 | |||
16 | %CANDLE% ".\ID2.wxs" -out .\Setup\ |
||
17 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
18 | %LIGHT% -out ".\Setup\ID2-%1.msi" ".\Setup\ID2.wixobj" -ext WixUIExtension -ext WixUtilExtension |
||
19 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
20 | |||
21 | 095d6d60 | humkyung | %CANDLE% ".\SPPIDConverter.wxs" -out .\Setup\ |
22 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
23 | %LIGHT% -out ".\Setup\SPPIDConverter-%1.msi" ".\Setup\SPPIDConverter.wixobj" -ext WixUIExtension -ext WixUtilExtension |
||
24 | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
||
25 | |||
26 | 5183a15f | humkyung | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\ID2\Setup\*.msi" |
27 | |||
28 | REM deploy artifacts |
||
29 | ..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/ID2/Setup/ID2-%1.msi" -T ".\Setup\ID2-%1.msi" |
||
30 | 095d6d60 | humkyung | ..\curl.exe -uadmin:dof1073# -X PUT "http://www.devdoftech.co.kr:9081/artifactory/ID2/Setup/SPPIDConverter-%1.msi" -T ".\Setup\SPPIDConverter-%1.msi" |
31 | 5183a15f | humkyung | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
32 | |||
33 | :EOF |
||
34 | ECHO process completed |
||
35 | c95a3035 | humkyung | exit |
36 | 5183a15f | humkyung | |
37 | :ERROR |
||
38 | c95a3035 | humkyung | exit 1 |