-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkrelease.bat
63 lines (62 loc) · 2.01 KB
/
mkrelease.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem
rem --------------------------------------------------
rem Release helper script
rem
rem Usage: mkrelease.bat version architecture
rem eg: mkrelease 1.16_3 x64 "_VENDOR_SFX=_3"
rem
setlocal
if "x%~1" == "x" goto Einval
if "x%~2" == "x" goto Einval
rem
set "ProjectName=libiconv"
set "ReleaseVersion=%~1"
set "ReleaseArch=%~2"
rem
set "ReleaseName=%ProjectName%-%ReleaseVersion%-win-%ReleaseArch%"
pushd %~dp0
set "BuildDir=%cd%"
popd
rem
rem Create builds
nmake "PREFIX=%BuildDir%\dist\%ReleaseName%" %~3 %~4 _STATIC=1 install
nmake "PREFIX=%BuildDir%\dist\%ReleaseName%" %~3 %~4 install
rem
rem Set path for ClamAV and 7za
rem
set "PATH=C:\Tools\clamav;C:\Utils;%PATH%"
pushd "%BuildDir%\dist"
rem
freshclam.exe --quiet
echo ## Binary release v%ReleaseVersion% > %ReleaseName%.txt
echo. >> %ReleaseName%.txt
echo. >> %ReleaseName%.txt
echo ```no-highlight >> %ReleaseName%.txt
clamscan.exe --version >> %ReleaseName%.txt
clamscan.exe --bytecode=no -r %ReleaseName% >> %ReleaseName%.txt
echo ``` >> %ReleaseName%.txt
7za.exe a -bd %ReleaseName%.zip %ReleaseName%
sigtool.exe --sha256 %ReleaseName%.zip >> %ReleaseName%-sha256.txt
rem
popd
goto End
:Einval
echo Error: Invalid parameter
echo Usage: %~nx0 version target
exit /b 1
:End