gitlab-org--gitlab-foss/.travis.yml

37 lines
929 B
YAML
Raw Normal View History

2013-01-09 19:43:49 +00:00
language: ruby
2012-05-25 13:38:23 +00:00
env:
2013-11-02 13:53:33 +00:00
global:
- TRAVIS=true
matrix:
- TASK=spinach_project DB=mysql
- TASK=spinach_other DB=mysql
2014-04-11 19:52:49 +00:00
- TASK=spec:api DB=mysql
- TASK=spec:feature DB=mysql
2014-04-11 19:52:49 +00:00
- TASK=spec:other DB=mysql
2014-02-21 10:32:06 +00:00
- TASK=jasmine:ci DB=mysql
- TASK=spinach_project DB=postgresql
- TASK=spinach_other DB=postgresql
2014-04-12 07:05:08 +00:00
- TASK=spec:api DB=postgresql
- TASK=spec:feature DB=postgresql
2014-04-11 19:52:49 +00:00
- TASK=spec:other DB=postgresql
2014-02-23 13:30:06 +00:00
- TASK=jasmine:ci DB=postgresql
before_install:
- sudo apt-get install libicu-dev -y
install:
- "bundle install --deployment --without production"
2011-11-15 13:42:01 +00:00
branches:
only:
- 'master'
rvm:
2013-04-09 16:29:45 +00:00
- 2.0.0
services:
- redis-server
2011-11-15 13:42:01 +00:00
before_script:
2012-05-25 13:38:23 +00:00
- "cp config/database.yml.$DB config/database.yml"
2012-02-19 09:49:48 +00:00
- "cp config/gitlab.yml.example config/gitlab.yml"
2014-03-19 02:21:25 +00:00
- "bundle exec rake db:setup"
- "bundle exec rake db:seed_fu"
2013-11-02 13:53:33 +00:00
script: "bundle exec rake $TASK --trace"
notifications:
email: false