summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: f3ede12f89fab1c5688de3357bd3b38633a2fab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
env:
  - DB=mysql
  - DB=sqlite
before_install:
  - sudo apt-get install libicu-dev -y
  - gem install charlock_holmes -v="0.6.8"
branches:
  only:
    - 'master'
rvm:
  - 1.9.3
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"