jenkins+tomcat+svn 自动化测试
1.下载jenkins.war包,我使用的是2.119版本
地址:http://updates.jenkins-ci.org/download/war/
2.把jenkins.war包发布到tomcat下,tomcat是java web项目容器,所以还需要配置JDK,我用的是jdk1.8版本,这里百度下linux上怎么配置jdk环境变量就OK了,我这里不说明了
把jenkins.war 包上传到tomcat目录下的webapps文件夹下,启动tomcat即可
第一次发布在tomcat6.5版本下,报错:
Error configuring application listener ofclass jenkins.util.SystemProperties
java.lang.UnsupportedClassVersionError: jenkins/util/SystemProperties : Unsupported major.minor version52.0 (unable to load class jenkins.util.SystemProperties)
网上找了下资料,jenkins官网上面说,We have the same failure but on our master (so not on a slave). We did an update to 2.19.2 but that didn't help. The problem hits us daily on different buildjobs without a clear pattern. A Jenkins restart helps.,说是在2.19.2 版本更改了,下载最新版的jenkins版本,试了下也没用
于是换了下tomcat版本,升级到tomcat8版本,发布好了,看来这个和tomcat版本有关
3.登录jenkins,访问地址:http://ip:端口号/jenkin,如下:
网友评论