gitlabhq/.travis.yml
2012-05-25 16:38:23 +03:00

18 lines
467 B
YAML

env:
- DB=mysql
- DB=sqlite
before_install: sudo apt-get install libicu-dev -y
branches:
only:
- 'master'
rvm:
- 1.9.2
before_script:
- "cp config/database.yml.$DB config/database.yml"
- "cp config/gitlab.yml.example config/gitlab.yml"
- "bundle exec rake db:create RAILS_ENV=test"
- "bundle exec rake db:migrate RAILS_ENV=test"
- "bundle exec rake db:seed_fu RAILS_ENV=test"
- "sh -e /etc/init.d/xvfb start"
script: "bundle exec rake travis"