Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
4148226f
提交
4148226f
authored
7月 30, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
automate release process
上级
2e6c30d6
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
50 行增加
和
62 行删除
+50
-62
buildRelease.bat
h2/src/installer/buildRelease.bat
+12
-36
Build.java
h2/src/tools/org/h2/build/Build.java
+33
-23
BuildBase.java
h2/src/tools/org/h2/build/BuildBase.java
+3
-1
WebSite.java
h2/src/tools/org/h2/build/doc/WebSite.java
+2
-2
没有找到文件。
h2/src/installer/buildRelease.bat
浏览文件 @
4148226f
@echo off
echo %time:~0,8%
echo %time:~0,8%
Start
rem == Change version and build number in Constants.java
rem == Maybe increase TCP_DRIVER_VERSION (old clients must be compatible!)
...
...
@@ -8,7 +8,6 @@ rem == Update the newsfeed
rem == No " Message.get" (must be "throw Message.get")
rem == Documentation: check if all Javadoc files are in the index
rem == Check that is no TODO in the docs
rem == Check code coverage
rem == Run regression test with JDK 1.4 and 1.5
rem == Use latest versions of other dbs
...
...
@@ -27,51 +26,31 @@ mkdir ..\h2web
rmdir /s /q bin 2>nul
rmdir /s /q temp 2>nul
call java14 >nul 2>nul
call build -quiet compile
call build -quiet spellcheck
call build jarClient
call build -quiet
call build -quiet jar
call build -quiet javadocImpl
call java16 >nul 2>nul
call build -quiet compile
set classpath=
call build -quiet javadoc
call build -quiet javadocImpl
call build -quiet spellcheck javadocImpl jarClient
echo %time:~0,8% JDK 1.4
call java14 >nul 2>nul
call build -quiet compile
call java16 >nul 2>nul
call build -quiet compile
call build -quiet installer mavenDeployCentral
rem call java14 >nul 2>nul
rem call build -quiet benchmark
rem call build -quiet compile benchmark
rem == Copy the benchmark results and update the performance page and diagram
call build -quiet docs
soffice.exe -invisible macro:///Standard.Module1.H2Pdf
call java14 >nul 2>nul
call build -quiet all
copy ..\h2web\h2.pdf docs >nul
xcopy /s /q /y dataWeb ..\h2web >nul
call build -quiet zip
makensis /v2 src/installer/h2.nsi
call build -quiet mavenDeployCentral
call java16 >nul 2>nul
call build -quiet
compil
e
call build -quiet
switchSourc
e
ren ..\h2web h2web-%today%
echo %time:~0,8%
echo %time:~0,8% Done
rem == Test with Hibernate
rem == Run FindBugs
rem == Check docs, versions and links in main, downloads, build numbers
rem == Check if missing javadocs
rem == Check jar file size
rem == Check dataWeb/index.html, versions and links in main, downloads, build
rem == Test installer
rem == Check the pdf file is in h2/docs
rem == Check in the PDF file:
rem == - footer
...
...
@@ -79,14 +58,10 @@ rem == - front page
rem == - orphan control
rem == - check images
rem == - table of contents
rem == Test Console
rem == Test all languages
rem == Scan for viruses
rem == Upload to SourceForge
rem == svn commit
rem == svn copy: /svn/trunk /svn/tags/version-1.0.x; Version 1.0.x (yyyy-mm-dd)
rem == Newsletter: prepare (always to BCC!!)
...
...
@@ -95,3 +70,4 @@ rem == Newsletter: send (always to BCC!!)
rem == Add to freshmeat
rem == http://en.wikipedia.org/wiki/H2_%28DBMS%29 (change version)
rem == http://www.heise.de/software/
rem == http://code.google.com/p/h2database/issues/list
h2/src/tools/org/h2/build/Build.java
浏览文件 @
4148226f
...
...
@@ -24,14 +24,6 @@ public class Build extends BuildBase {
public
static
void
main
(
String
[]
args
)
{
new
Build
().
run
(
args
);
}
/**
* Create the jar file and generate the documentation.
*/
public
void
all
()
{
jar
();
docs
();
}
/**
* Run the benchmarks.
...
...
@@ -89,12 +81,19 @@ public class Build extends BuildBase {
compile
(
true
,
false
);
}
private
void
compile
(
boolean
debugInfo
,
boolean
clientOnly
)
{
/**
* Switch the source code to the current JDK.
*/
public
void
switchSource
()
{
try
{
SwitchSource
.
main
(
new
String
[]
{
"-dir"
,
"src"
,
"-auto"
});
}
catch
(
IOException
e
)
{
throw
new
Error
(
e
);
}
}
private
void
compile
(
boolean
debugInfo
,
boolean
clientOnly
)
{
switchSource
();
clean
();
mkdir
(
"temp"
);
resources
(
clientOnly
);
...
...
@@ -179,6 +178,27 @@ public class Build extends BuildBase {
return
getStaticValue
(
"org.h2.engine.Constants"
,
"getVersion"
);
}
/**
* Create the h2.zip file and the Windows installer.
*/
public
void
installer
()
{
jar
();
docs
();
exec
(
"soffice"
,
new
String
[]{
"-invisible"
,
"macro:///Standard.Module1.H2Pdf"
});
copy
(
"docs"
,
getFiles
(
"../h2web/h2.pdf"
),
"../h2web"
);
delete
(
"docs/html/onePage.html"
);
FileList
files
=
getFiles
(
"../h2"
).
keep
(
"../h2/build.*"
);
files
.
addAll
(
getFiles
(
"../h2/bin"
).
keep
(
"../h2/bin/h2.*"
));
files
.
addAll
(
getFiles
(
"../h2/docs"
));
files
.
addAll
(
getFiles
(
"../h2/service"
));
files
.
addAll
(
getFiles
(
"../h2/src"
));
zip
(
"../h2web/h2.zip"
,
files
,
"../"
,
false
,
false
);
exec
(
"makensis"
,
new
String
[]{
"/v2"
,
"src/installer/h2.nsi"
});
String
buildDate
=
getStaticField
(
"org.h2.engine.Constants"
,
"BUILD_DATE"
);
writeFile
(
new
File
(
"../h2web/h2-"
+
buildDate
+
".zip"
),
readFile
(
new
File
(
"../h2web/h2.zip"
)));
writeFile
(
new
File
(
"../h2web/h2-setup-"
+
buildDate
+
".exe"
),
readFile
(
new
File
(
"../h2web/h2-setup.exe"
)));
}
/**
* Create the regular h2.jar file.
*/
...
...
@@ -210,7 +230,10 @@ public class Build extends BuildBase {
exclude
(
"*.bat"
).
exclude
(
"*.sh"
).
exclude
(
"*.txt"
);
jar
(
"bin/h2client.jar"
,
files
,
"temp"
);
long
kb
=
jar
(
"bin/h2client.jar"
,
files
,
"temp"
);
if
(
kb
<
300
||
kb
>
350
)
{
throw
new
Error
(
"Expected file size 300 - 350 KB, got: "
+
kb
);
}
}
/**
...
...
@@ -349,17 +372,4 @@ public class Build extends BuildBase {
java
(
"org.h2.build.doc.SpellChecker"
,
null
);
}
/**
* Create the h2.zip file.
*/
public
void
zip
()
{
delete
(
"docs/html/onePage.html"
);
FileList
files
=
getFiles
(
"../h2"
).
keep
(
"../h2/build.*"
);
files
.
addAll
(
getFiles
(
"../h2/bin"
).
keep
(
"../h2/bin/h2.*"
));
files
.
addAll
(
getFiles
(
"../h2/docs"
));
files
.
addAll
(
getFiles
(
"../h2/service"
));
files
.
addAll
(
getFiles
(
"../h2/src"
));
zip
(
"../h2.zip"
,
files
,
"../"
,
false
,
false
);
}
}
h2/src/tools/org/h2/build/BuildBase.java
浏览文件 @
4148226f
...
...
@@ -552,10 +552,12 @@ public class BuildBase {
* @param destFile the target file name
* @param files the file list
* @param basePath the base path
* @return the size of the jar file in KB
*/
protected
void
jar
(
String
destFile
,
List
files
,
String
basePath
)
{
protected
long
jar
(
String
destFile
,
List
files
,
String
basePath
)
{
long
kb
=
zipOrJar
(
destFile
,
files
,
basePath
,
false
,
false
,
true
);
println
(
"Jar "
+
destFile
+
" ("
+
kb
+
" KB)"
);
return
kb
;
}
/**
...
...
h2/src/tools/org/h2/build/doc/WebSite.java
浏览文件 @
4148226f
...
...
@@ -29,7 +29,7 @@ public class WebSite {
"<script type=\"text/javascript\">var pageTracker=_gat._getTracker(\"UA-2351060-1\");pageTracker._initData();pageTracker._trackPageview();</script>"
;
private
String
sourceDir
=
"docs"
;
private
String
targetDir
=
"
dataW
eb"
;
private
String
targetDir
=
"
../h2w
eb"
;
/**
* This method is called when executing this application from the command
...
...
@@ -44,7 +44,7 @@ public class WebSite {
private
void
run
()
throws
Exception
{
deleteRecursive
(
new
File
(
targetDir
));
copy
(
new
File
(
sourceDir
),
new
File
(
targetDir
));
Newsfeed
.
main
(
new
String
[]
{
"dataWeb
/html"
});
Newsfeed
.
main
(
new
String
[]
{
targetDir
+
"
/html"
});
}
private
void
deleteRecursive
(
File
dir
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论