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

33 lines
775 B
YAML
Raw Normal View History

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