微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Integrity 持续集成服务器

程序名称:Integrity

授权协议: MIT

操作系统: 跨平台

开发语言: Ruby

Integrity 介绍

Integrity 是 Ruby 开发的持续集成服务器。

要求:

  • Ruby >= 1.8.7 (1.8.7, 1.9.2, 1.9.3 and 2.0.0 should work)

  • RubyGems >= 1.3.5

  • git >= 1.6

安装依赖:

$ gem install bundler
$ git clone git://github.com/integrity/integrity
$ cd integrity
$ git checkout -b deploy v26
$ bundle install
$ bundle exec rake db

配置:

Integrity.configure do |c|
  c.database                    = "sqlite3:integrity.db"
  c.directory                   = "builds"
  c.base_url                    = "http://ci.example.org"
  c.log                         = "integrity.log"
  c.builder                     = :threaded, 5
  c.build_all                   = true
  c.project_default_build_count = 10
  
end

Integrity 官网

https://github.com/integrity/integrity

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐