markus / build.bat @ c70a456e
이력 | 보기 | 이력해설 | 다운로드 (1.35 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 |
|
18 |
%CANDLE% ".\MARKUS_pemss.wxs" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension -out .\Setup\ |
19 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
20 |
|
21 |
%LIGHT% -out ".\Setup\MARKUS_PEMSS-%1.msi" ".\Setup\MARKUS_pemss.wixobj" -ext WixUIExtension -ext WixUtilExtension -ext WixNetfxExtension |
22 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
23 |
|
24 |
%SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 ".\Setup\*.msi" |
25 |
|
26 |
REM deploy artifacts |
27 |
..\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" |
28 |
IF %ERRORLEVEL% NEQ 0 goto :ERROR |
29 |
|
30 |
:EOF |
31 |
ECHO process completed |
32 |
exit |
33 |
|
34 |
:ERROR |
35 |
exit 1 |