gitlabhq/.travis.yml

22 lines
525 B
YAML
Raw Permalink Normal View History

2013-01-09 20:43:49 +01:00
language: ruby
2012-05-25 15:38:23 +02:00
env:
2013-03-10 19:29:34 +01:00
- DB=mysql TRAVIS=true
before_install:
- sudo apt-get install libicu-dev -y
- gem install charlock_holmes -v="0.6.9"
2011-11-15 14:42:01 +01:00
branches:
only:
- 'master'
rvm:
2013-03-22 18:34:59 +01:00
- 1.9.3-p392
services:
- mysql
2012-10-10 01:41:44 +02:00
- postgresql
2011-11-15 14:42:01 +01:00
before_script:
2012-05-25 15:38:23 +02:00
- "cp config/database.yml.$DB config/database.yml"
2012-02-19 10:49:48 +01:00
- "cp config/gitlab.yml.example config/gitlab.yml"
2012-12-18 19:43:44 +01:00
- "bundle exec rake db:setup RAILS_ENV=test"
2011-11-15 14:42:01 +01:00
- "bundle exec rake db:seed_fu RAILS_ENV=test"
- "sh -e /etc/init.d/xvfb start"
2012-10-04 12:55:29 +02:00
script: "bundle exec rake travis --trace"