您会建议使用哪种工具在Grails + Tomcat(+ Ubuntu)环境中进行持续集成?詹金斯?哈德森?还有吗 我不是在寻找任何复杂的东西……简单就可以了。
我刚刚在Jenkins中配置了grails作业(在debian上运行)。我真的不能说其他CI服务器。.我也知道apache连续体,但是好几年没有使用它了。
对于Debian / Ubuntu,您只需添加
deb http://pkg.jenkins-ci.org/debian binary/
在/etc/apt/sources.list中,然后通过apt-get update和&apt-get install jenkins安装jenkins
用户jenkins已创建。
您可能想要更改/ etc / default / jenkins中的默认配置,以使用另一个前缀(即,将其设置为jenkins,以便url将类似于http:// localhost:port /jenkins)端口或JENKINS_HOME。
默认情况下,jenkins的主目录是/ var / lib / jenkins。
您可以通过init.d脚本来启动/停止/重启jenkins(即/etc/init.d/jenkins restart)。
在jenkins内部,您可以安装“ Jenkins Grails插件”并添加一个新的“自由样式软件项目”,然后在其配置(内部构建部分)中执行“ Add build step-> Build with Grails”。
然后,对于“目标”,您可以输入“ clean test-app -unit”之类的内容(适当添加目标)。
对于“发布Junit结果报告”,请使用类似YOUR_PROJECT / target / test-reports / TESTS- TestSuites.xml的路径
另外,请不要忘记为Jenkins安装“ Chuck Norris插件”……这是有史以来最重要的插件!
如果您还想使用apache2 + Jenkins,请在apache站点配置中包括以下内容:
Include /etc/jenkins/apache2.conf
并使用以下内容创建文件/etc/jenkins/apache2.conf:
ProxyPass /jenkins http://localhost:8080/jenkins ProxyPassReverse /jenkins http://localhost:8080/jenkins ProxyPassReverse /jenkins http://example.org/jenkins ProxyPreserveHost On ProxyRequests Off ProxyPassReverseCookiePath /jenkins /jenkins <Proxy http://localhost:8080/jenkins*> Order deny,allow Allow from all </Proxy>
您必须激活代理模块:
a2enmod proxy proxy_http
然后重新启动apache2:
/etc/init.d/apache2 restart