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

28 lines
593 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:
2014-02-21 10:32:06 +00:00
- TASK=spinach DB=mysql
- TASK=spec DB=mysql
- TASK=jasmine:ci DB=mysql
- TASK=spinach DB=postgresql
- TASK=spec DB=postgresql
before_install:
- sudo apt-get install libicu-dev -y
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"
2013-11-02 13:53:33 +00:00
- "bundle exec rake db:setup"
- "bundle exec rake db:seed_fu"
script: "bundle exec rake $TASK --trace"
notifications:
email: false