您的位置:首页 > 移动开发 > Android开发

Android持续集成

2014-04-07 21:56 162 查看
Android 持续集成

Lint

参考:

https://wiki.jenkins-ci.org/display/JENKINS/Android+Lint+Plugin

1. 进入jenkins插件管理,找到Android Lint Plugin,选择并且安装.之后重启Jenkins。

2. 在jenkins的job中,在build targets后面加上一项lint。

3. 构建job。你就可以看见lint的结果了

4. 之后你还可以在job的主页看到lint结果的变化趋势。



Findbugs

参考地址:

https://wiki.jenkins-ci.org/display/JENKINS/Building+an+Android+app+and+test+project

1. 下载Find’Bugs并且安装,假设安装在/data/findbugs.

下载地址:

http://sourceforge.jp/projects/sfnet_findbugs/downloads/findbugs/3.0.0/findbugs-3.0.0-dev-20131204-e3cbbd5.zip/

或者

http://findbugs.sourceforge.net/downloads.html

2. 从findbugs的安装目录lib下面拷贝findbugs-ant.jar到ant的lib目录下面

3. 在local.property文件中加入,也可以在jenkins的ant构建中加入

findbugs.home=C:\\develope\\findbugs-3.0.0

4. 在工程的build.xml文件中加入以下任务

<taskdefname="findbugs"classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/>

<targetname="findbugs">
<mkdirdir="reports" />
<findbugshome="${findbugs.home}" output="xml"outputFile="reports/findbugs.xml"

excludeFilter="findbugs-exclude.xml">
<auxClasspathpath="${android.jar}" />
<classlocation="${out.dir}" />
</findbugs></target>

5. 不要包含对R文件的check,在工程下面创建findbugs-exclude.xml。

<?xmlversion="1.0" encoding="UTF-8"?>

<FindBugsFilter>

<Match>

<Classname="~.*\.R\$.*"/>

<Bug code="Nm"/>

</Match>

</FindBugsFilter>

6. 在Jenkins中进入插件管理,下载安装FindBugs Plugin并且重启Jenkins。

7. 在job的ant targets中加入findbugs。

8. 最后加上publish findbugs analysis results

**/findbugs.xml



Checkstyle

参考地址:

http://blog.jazzy.pro/en/jenkins-ci-and-android/

下载checkstyle

http://sourceforge.net/projects/checkstyle/

1. 将文件解压到一个指定的地方

2. 在ant build.xml中加入

<taskdef resource="checkstyletask.properties"

classpath="${checkstyle.home}/checkstyle-5.7-all.jar"/>

<target name="checkstyle">

<checkstyle config="${checkstyle.home}/sun_checks.xml"

failureProperty="checkstyle.failure"

failOnViolation="false">

<formatter type="xml"

tofile="reports/checkstyle.xml"/>

<fileset dir="${source.dir}"includes="**/*.java"/>

</checkstyle>

</target>

3. 在job ant构建中加入以下的属性定义:

checkstyle.home= C: \\develope\\checkstyle-5.7

4. 在ant target中加入checkstyle

5. 在构建后操作中加入Publish Checkstyle analysis results. 填入**/checkstyle.xml



如果你想要加入发送邮件的功能:

参考
http://checkstyle.sourceforge.net/anttask.html
<!-- run this target as part ofautomated build -->
<target name="checkstyle-nightly"
depends="checkstyle"
if="checkstyle.failure"
description="Sends email ifcheckstyle detected code conventions violations.">

<!-- use your own server and email addresses below. See Antdocumentation for details -->

<mail from="qa@some.domain"
tolist="someone@some.domain,someoneelse@some.domain"
mailhost="mailbox.some.domain"
subject="Checkstyle violation(s)in project ${ant.project.name}"
files="checkstyle_report.html"/>

</target>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: