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>

更多相关文章

  1. Android锁屏API-DevicePolicyManager介绍
  2. Android你所不知道的新鲜事
  3. Android(安卓)软键盘遮挡问题
  4. Android(安卓)加快编译时间
  5. Android动态分析工具Droidbox
  6. Android(安卓)NDK初识
  7. 用activity实现半透明的、淡入的menu
  8. 关于getting 'android:label' attribute: attribute is not a st
  9. Unity加入Android广告小结

随机推荐

  1. Android---fragment动态切换简单使用
  2. android常用系统bar高度
  3. android recycleview 中禁止多点触发
  4. Android(安卓)浮动button 自动靠边 自定
  5. android studio自动提示文本框
  6. Android开机动画视频
  7. warning: Ignoring InnerClasses attribu
  8. 应届毕业生第一个项目——我博摄像头
  9. Ubuntu 10.04编译Android(安卓)2.2 源代
  10. httpclient测试代码