summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: f56311bb5a2c30d5374d67569b1566a957fbc335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: ruby
env:
  global:
    - DB=mysql
    - TRAVIS=true
  matrix:
    - TASK=spinach
    - TASK=spec
    - TASK=jasmine:ci
before_install:
  - sudo apt-get install libicu-dev -y
branches:
  only:
    - 'master'
rvm:
  - 2.0.0
services:
  - mysql
before_script:
  - "cp config/database.yml.$DB config/database.yml"
  - "cp config/gitlab.yml.example config/gitlab.yml"
  - "bundle exec rake db:setup"
  - "bundle exec rake db:seed_fu"
script: "bundle exec rake $TASK --trace"